-
Notifications
You must be signed in to change notification settings - Fork 76
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
feat(shell-panel): deprecate float displayMode and add float-content and float-all #9795
Merged
josercarcamo
merged 32 commits into
dev
from
josercarcamo/7513-shell-panel-add-float-display-v2
Jul 30, 2024
Merged
Changes from 30 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
725a45e
fix(shell-panel): implement float display mode
josercarcamo 8cef11f
Merge branch 'dev' into josercarcamo/7513-shell-panel-add-float-displ…
josercarcamo d881904
Merge branch 'dev' into josercarcamo/7513-shell-panel-add-float-displ…
josercarcamo a5cb68c
Merge branch 'dev' into josercarcamo/7513-shell-panel-add-float-displ…
josercarcamo b9c0b6c
Removed code that reduced action bar size per code review
josercarcamo 57c8731
REmoved undefined --calcite-shell-panel-max-width-internal
josercarcamo e58b0d5
Removed unused line; renamed display-mode values; other
josercarcamo f778931
Made further changes to code
josercarcamo b2698eb
Merge branch 'dev' into josercarcamo/7513-shell-panel-add-float-displ…
josercarcamo 38069e2
Reverted name change
josercarcamo 46011d0
Merge branch 'dev' into josercarcamo/7513-shell-panel-add-float-displ…
josercarcamo 6adf1f7
Merge branch 'josercarcamo/7513-shell-panel-add-float-display-v2' of …
josercarcamo 6c4d128
Reverted name change
josercarcamo 951d1f7
Merge branch 'dev' into josercarcamo/7513-shell-panel-add-float-displ…
josercarcamo e3b608d
Separated rules for float-detach and float
josercarcamo cbc1c53
Merge branch 'josercarcamo/7513-shell-panel-add-float-display-v2' of …
josercarcamo 4329cc9
Merge branch 'dev' into josercarcamo/7513-shell-panel-add-float-displ…
josercarcamo 7722db7
Fixing failed test
josercarcamo 3b6755a
Merge branch 'josercarcamo/7513-shell-panel-add-float-display-v2' of …
josercarcamo 84b1026
Fixing failed test
josercarcamo 957b678
Fixing failed test
josercarcamo 50f283f
Fixing failed test
josercarcamo abf80a5
Moved the '-internal' ending right after 'calcite' for each rule
josercarcamo 5f39407
Merge branch 'dev' into josercarcamo/7513-shell-panel-add-float-displ…
josercarcamo 3540fba
Changed display-mode from float to float-detach
josercarcamo ea1b001
Merge branch 'josercarcamo/7513-shell-panel-add-float-display-v2' of …
josercarcamo 46b45f8
Added stories for vertical and horizontal float
josercarcamo 271b1a5
Merge branch 'dev' into josercarcamo/7513-shell-panel-add-float-displ…
josercarcamo c312514
Deprecated display mode float and added float-content and float-all
josercarcamo c132c44
Merge branch 'dev' into josercarcamo/7513-shell-panel-add-float-displ…
josercarcamo dd6c2f6
Made tests for float and float-content
josercarcamo 141c097
Merge branch 'josercarcamo/7513-shell-panel-add-float-display-v2' of …
josercarcamo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/calcite-components/src/components/shell-panel/interfaces.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export type DisplayMode = "dock" | "float" | "overlay"; | ||
export type DisplayMode = "dock" | "float" | "overlay" | "float-content" | "float-all"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: should this be when
displayMode
is float-content or float?