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

State explorer panel #15365

Merged
merged 43 commits into from
Jan 29, 2025
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
99537ae
Find components with state vars and allow user to select
PClmnt Jan 14, 2025
7439dd9
Merge remote-tracking branch 'refs/remotes/origin/state-and-bindings-…
PClmnt Jan 14, 2025
7bd718b
work to highlight setting when selected
PClmnt Jan 15, 2025
5c54c43
convert bbui combobox and popover to ts
PClmnt Jan 15, 2025
8763f52
add ability to highlight multiple settings
PClmnt Jan 15, 2025
094881e
clear highlight state as part of component select
PClmnt Jan 15, 2025
e14bf00
some tidy up
PClmnt Jan 16, 2025
7cb422f
find components that are updating state
PClmnt Jan 16, 2025
3cdcc44
further popover changes / ts updates
PClmnt Jan 17, 2025
38e182d
Merge remote-tracking branch 'refs/remotes/origin/state-and-bindings-…
PClmnt Jan 17, 2025
1074850
add ability for user to add default state value
PClmnt Jan 21, 2025
417631c
tweaking around user default values
PClmnt Jan 21, 2025
c199b68
some duplicate code
PClmnt Jan 21, 2025
8cab28d
add link for each individual setting
PClmnt Jan 23, 2025
56018b1
Merge remote-tracking branch 'refs/remotes/origin/state-and-bindings-…
PClmnt Jan 23, 2025
3ac7c90
refactor and allow for condition and style settings
PClmnt Jan 23, 2025
ad748aa
Merge remote-tracking branch 'refs/remotes/origin/state-and-bindings-…
PClmnt Jan 23, 2025
28c59d1
rogue string
PClmnt Jan 23, 2025
513e31d
some tidy up and revert highlightedSetting to obj
PClmnt Jan 23, 2025
20de1b7
Merge remote-tracking branch 'refs/remotes/origin/state-and-bindings-…
PClmnt Jan 24, 2025
7c52166
typing
PClmnt Jan 24, 2025
4d4fb3a
fix types
PClmnt Jan 24, 2025
0a2f883
fix bad merge
PClmnt Jan 24, 2025
0ac2f88
fixes
PClmnt Jan 24, 2025
4b7270a
add onRowClick to components updating state
PClmnt Jan 24, 2025
eb93277
further updates
PClmnt Jan 24, 2025
43b7dc5
pr feedback
PClmnt Jan 25, 2025
09f4db6
finding of screen onload
PClmnt Jan 27, 2025
09bb958
finally tracked down issue with urlStateSync causing update
PClmnt Jan 27, 2025
44d9a51
handle js bindings in default value
PClmnt Jan 27, 2025
987b3e8
fix types
PClmnt Jan 28, 2025
b7dbe2e
tidy up
PClmnt Jan 28, 2025
9530235
Merge remote-tracking branch 'refs/remotes/origin/state-and-bindings-…
PClmnt Jan 28, 2025
a100099
some further ux updates
PClmnt Jan 28, 2025
680f52a
remove link
PClmnt Jan 29, 2025
6c76675
Merge remote-tracking branch 'refs/remotes/origin/state-and-bindings-…
PClmnt Jan 29, 2025
8a0c9ae
lint
PClmnt Jan 29, 2025
cb47e74
Merge branch 'state-and-bindings-panels' of github.com:Budibase/budib…
aptkingston Jan 29, 2025
734be9f
Merge branch 'state-and-bindings-panels' of github.com:Budibase/budib…
aptkingston Jan 29, 2025
532b740
Design tweaks
aptkingston Jan 29, 2025
9d217e8
Merge remote-tracking branch 'refs/remotes/origin/state-and-bindings-…
PClmnt Jan 29, 2025
bf2b5a5
typing issue
PClmnt Jan 29, 2025
404f983
Merge remote-tracking branch 'origin/budi-8980-create-state-panel' in…
PClmnt Jan 29, 2025
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
Prev Previous commit
Next Next commit
fix bad merge
  • Loading branch information
PClmnt committed Jan 24, 2025
commit 0a2f88376148019bc9ce748d2b58ae399d09c341
7 changes: 7 additions & 0 deletions packages/bbui/src/Popover/Popover.svelte
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<script context="module" lang="ts">
export interface PopoverAPI {
show: () => void
hide: () => void
}
</script>

<script lang="ts">
import "@spectrum-css/popover/dist/index-vars.css"
import Portal from "svelte-portal"
Expand Down
Loading