-
Notifications
You must be signed in to change notification settings - Fork 196
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
kie-issues#1547: DMN Editor: Render evaluation highlights in the Boxed Expression Editor #2681
Merged
Merged
Changes from 25 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
19bd400
kie-issues#1547: Render evaluation highlights in the Boxed Expression…
jomarko 713e27d
restrict ::before size
jomarko d99ef6a
Display evaluationHitsCount in the leading column of the DT and Condi…
jomarko 262e4b5
Merge branch 'main' into kie-issues#1547
jomarko f2274d0
Adapt props to Map<string, number>
jomarko 84a6a46
Style the first column only
jomarko 527aad4
Prevent evaluationHitCount in 'if' row
jomarko 925f925
Merge branch 'main' into kie-issues#1547
jomarko 22270b1
Refactor variable names
jomarko b2bf4a9
Cleanup
jomarko d7b4635
Merge branch 'main' into kie-issues#1547
jomarko 22996a0
Update packages/boxed-expression-component/src/BoxedExpressionEditorC…
jomarko 0ec93a0
evaluationHitsCountPerId -> evaluationHitsCountById
jomarko 6e4ea9b
useMemo
jomarko 19e8b23
supportsEvaluationHitsCount
jomarko d52e553
inline variable
jomarko 4312521
missing hook dependencies
jomarko d5194b2
fix useMemo
jomarko 3991237
split ternary operator to multiline
jomarko 4ca0587
remove one ternary operator
jomarko 080f4cd
fix styling: highlight whole row
jomarko 1fe7f31
add stories
jomarko 156db3e
stories wrapper
jomarko 8b20094
Merge branch 'main' into kie-issues#1547
jomarko f1f356e
Remove evaluationHitsCountColumnIndex
jomarko 7ce7cdc
Fix boxedExpressionStoriesWrapper.tsx
jomarko 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
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
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
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.
It's not necessary to modify the
BoxedExpressionEditorStoryArgs
type, as theBoxedExpressionEditorProps
already contains theevaluationHitsCountById
property.Also, the
useState
isn't required.The evaluationHitsCountById should have the same value as other props:
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.
thank you, I am happy we can keep it simple