Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@salt-ds/[email protected]
Minor Changes
2719afb: - Added theme support for several built-in ag grid provided editors
agLargeTextCellEditor
agSelectCellEditor
agRichSelectCellEditor
agNumberCellEditor
agDateStringCellEditor
input
padding within.editable-cell
during editing.editable-cell
when focusedCloses ag grid theme built-in editors support #4144
Patch Changes
sideEffects: true
is not set on style-loader rules.@salt-ds/[email protected]
Minor Changes
LockedIcon
andInProgressIcon
to the default icon map in SemanticIconProvider.Patch Changes
sideEffects: true
is not set on style-loader rules.@salt-ds/[email protected]
Patch Changes
sideEffects: true
is not set on style-loader rules.@salt-ds/[email protected]
Patch Changes
@salt-ds/[email protected]
Patch Changes
sideEffects: true
is not set on style-loader rules.@salt-ds/[email protected]
Patch Changes
0a5b68b: Marked CSS files as having side effects. This fixes Webpack tree-shaking CSS files when
sideEffects: true
is not set on style-loader rules.a9edf03: Fixed DatePicker showing overlay when
readOnly
. Closes DatePicker ignores readOnly #4470.86d2a28: Refactored SteppedTracker, added Step and useStepReducer
The
SteppedTracker
is a component that helps you manage a series of steps in a process. It provides a way to navigate between steps, and to track the progress of the process.The
<SteppedTracker />
is meant to be used in conjunction with the<Step />
component and potentially theuseStepReducer()
hook.In it's simplest form the
SteppedTracker
can be used like so:The SteppedTracker component supports nested steps, which can be used to represent sub-steps within a step. This can be done by nesting
<Step />
components within another<Step />
component. We advise you not to go above 2 levels deep, as it becomes hard to follow for the user.The
SteppedTracker
component is a purely presentational component, meaning that you need to manage the state of the steps yourself. That however becomes tricky when dealing with nested steps. This is where theuseStepReducer()
hook comes in. It is a custom hook that helps you manage the state of aSteppedTracker
component with nested steps with ease. It has a built-in algorithm that determines the stage of all steps above and below the active step. All you need to do is addstage: 'active'
to the desired step (seestep-3-3
in the hook example below), the hook will figure out the rest. This is what we callautoStage
.Migrating from the previous SteppedTracker API
Before:
After:
Before:
After
or you can utilize the hook for nested scenarios, such as the one above
Updated dependencies [86d2a28]
Updated dependencies [dedbade]
Updated dependencies [0a5b68b]
@salt-ds/[email protected]
Patch Changes
sideEffects: true
is not set on style-loader rules.