Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Components: Make the ProgressBar public #61062

Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
023e5c4
Remove "experimental" designation for `ProgressBar`
fullofcaffeine Apr 19, 2024
b1fe7cd
Add optional width prop to override/set the progress bar track container
fullofcaffeine Apr 25, 2024
fe9129d
Revert "Add optional width prop to override/set the progress bar trac…
fullofcaffeine May 22, 2024
64c72e2
Keep an unconstrained width by default, while allowing consumers to o…
fullofcaffeine May 22, 2024
c88ece0
Revert "Keep an unconstrained width by default, while allowing consum…
fullofcaffeine May 24, 2024
ad0fff9
Make the component public
fullofcaffeine May 24, 2024
dc299ed
Update consumers to import the public component
fullofcaffeine May 24, 2024
4c0b8fd
Expose docs for the now public ProgressBar component
fullofcaffeine May 24, 2024
0ff6637
Update CHANGELOG
fullofcaffeine May 24, 2024
ad2fd28
Merge branch 'trunk' into remove/wp-components-experimental-designati…
fullofcaffeine May 24, 2024
adf39a1
Run docs:build after docs/manifest.js change
fullofcaffeine May 24, 2024
ceb2840
Merge branch 'trunk' into remove/wp-components-experimental-designati…
fullofcaffeine May 24, 2024
9b3db94
Remove remaining private usage of ProgressBar
fullofcaffeine May 24, 2024
a219fa8
Small formatting fix in the changelog
fullofcaffeine May 24, 2024
1d22f24
Add basic docs to the README
fullofcaffeine May 24, 2024
b096ca4
Add jsdoc
fullofcaffeine May 24, 2024
3af0985
Formatting fix in README jsx block
fullofcaffeine May 27, 2024
846ccc0
Another formatting fix in README jsx block
fullofcaffeine May 27, 2024
39b92a5
YAFF (yet another formatting fix) in the README jsx
fullofcaffeine May 27, 2024
3241379
Improve wording in descripton of the `value` prop in the README
fullofcaffeine May 27, 2024
ff982fb
YAFF: Missing semicolon in README jsx
fullofcaffeine May 27, 2024
b0eca3f
YAFF: missing semicolon in jsx block in README
fullofcaffeine May 27, 2024
59d46cc
YAFF: missing semicolon in jsx block in README
fullofcaffeine May 27, 2024
0832e40
YAFF: use tab instead of spaces in jsx code block in README
fullofcaffeine May 27, 2024
5ca947a
Move export out of the HOC export section
fullofcaffeine May 27, 2024
47183b7
Fix CHANGELOG: Move entry to the existing enhacements section
fullofcaffeine May 27, 2024
eed1dba
Merge branch 'trunk' into remove/wp-components-experimental-designati…
fullofcaffeine May 27, 2024
d132170
Spacing fix
fullofcaffeine May 28, 2024
43e1a57
Sort import alphabetically
fullofcaffeine May 28, 2024
c0bd79d
Simplify CHANGELOG entry
fullofcaffeine May 29, 2024
2f978f4
Re-export as default for visual consistency
fullofcaffeine May 29, 2024
433d249
Merge branch 'trunk' into remove/wp-components-experimental-designati…
fullofcaffeine May 29, 2024
1b4dc84
Merge branch 'trunk' into remove/wp-components-experimental-designati…
fullofcaffeine May 29, 2024
17b0d30
Improve jsdoc comment: make it fit within ~80chars of char lenght and…
fullofcaffeine May 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/components/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ export { default as PanelHeader } from './panel/header';
export { default as PanelRow } from './panel/row';
export { default as Placeholder } from './placeholder';
export { default as Popover } from './popover';
export { ProgressBar } from './progress-bar';
fullofcaffeine marked this conversation as resolved.
Show resolved Hide resolved
export { default as QueryControls } from './query-controls';
export { default as __experimentalRadio } from './radio-group/radio';
export { default as __experimentalRadioGroup } from './radio-group';
Expand Down Expand Up @@ -201,7 +202,6 @@ export {
} from './slot-fill';
export { default as __experimentalStyleProvider } from './style-provider';
export { ZStack as __experimentalZStack } from './z-stack';
export { ProgressBar } from './progress-bar';

// Higher-Order Components.
export {
Expand Down
Loading