-
Notifications
You must be signed in to change notification settings - Fork 701
fix: designer fe issues #794
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -187,7 +187,7 @@ export interface ILogViewerWidgetData<T extends ELogViewerScriptType> { | |||||||||||||||||||
scriptType: T; | ||||||||||||||||||||
script: z.infer<(typeof LogViewerScriptSchemaMap)[T]>; | ||||||||||||||||||||
options?: ILogViewerWidgetOptions; | ||||||||||||||||||||
postActions?: () => void; | ||||||||||||||||||||
postActions?: () => void | Promise<void>; | ||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure that consumers of the ILogViewerWidgetData interface are updated to handle asynchronous postActions, and consider adding documentation to clarify this change.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||||||||||||||||
} | ||||||||||||||||||||
|
||||||||||||||||||||
export interface ILogViewerWidget | ||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"lockfileVersion": 1, | ||
"workspaces": { | ||
"": { | ||
"name": "ten-runtime-nodejs", | ||
"devDependencies": { | ||
"@types/node": "^18.14.5", | ||
"source-map-support": "^0.5.21", | ||
"typescript": "^5.7.2", | ||
}, | ||
}, | ||
}, | ||
"packages": { | ||
"@types/node": ["@types/node@18.19.97", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-4r3Y9EuCJjWduiam85Fo4GBQtneaEuoaBSdiKo+o6qwQUh0JFVBe7cRUK6I6yVzA0S1gBJJfoQx4VtBH4e5ikg=="], | ||
|
||
"buffer-from": ["buffer-from@1.1.2", "", {}, "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="], | ||
|
||
"source-map": ["source-map@0.6.1", "", {}, "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="], | ||
|
||
"source-map-support": ["source-map-support@0.5.21", "", { "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w=="], | ||
|
||
"typescript": ["typescript@5.8.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ=="], | ||
|
||
"undici-types": ["undici-types@5.26.5", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="], | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"devDependencies": { | ||
"@types/node": "^22.13.5", | ||
"eslint": "^9.21.0", | ||
"eslint-config-prettier": "^10.1.1", | ||
"eslint-plugin-prettier": "^5.2.6", | ||
"@types/node": "^22.15.14", | ||
"eslint": "^9.26.0", | ||
"eslint-config-prettier": "^10.1.3", | ||
"eslint-plugin-prettier": "^5.4.0", | ||
"prettier": "^3.5.3", | ||
"typescript-eslint": "^8.29.0" | ||
"typescript-eslint": "^8.32.0" | ||
} | ||
} |
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.
[nitpick] Confirm that the new hover background and border-radius settings align with the overall design standards and accessibility requirements.
Copilot uses AI. Check for mistakes.