Skip to content

Actions JS Console #1853

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

Open
wants to merge 23 commits into
base: feat/assistant
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
09f315c
Adds dynamic layer indexing
kamalqureshi Jul 8, 2025
b29680f
fixed: Layout components issue, children components depth issues
kamalqureshi Jul 8, 2025
729130e
Event handlers for all components.
kamalqureshi Jul 9, 2025
0cc5892
Update App meta data
kamalqureshi Jul 10, 2025
9d67db7
Created test case for the ApplicationApiService.
thomas37-star Jul 10, 2025
cc45a08
Publish App, Test App, Apply Global JS and CSS
kamalqureshi Jul 10, 2025
f9128ea
Created test case for the ApplicationEndpointsTest.
thomas37-star Jul 10, 2025
1a587df
fix workspaces updated myorg endpoint
iamfaran Jul 11, 2025
53fb65d
fix orglist active org icon
iamfaran Jul 11, 2025
c7e6081
Sharing App Permissions
kamalqureshi Jul 11, 2025
56c1c55
Updated CustomSelector UI
kamalqureshi Jul 11, 2025
d2f2a4c
Adding Tooltip to Multiselect custom tags
kamalqureshi Jul 11, 2025
2103cfe
Merge branch 'dev' into actions_js_console
kamalqureshi Jul 11, 2025
34c6351
Merge pull request #1859 from iamfaran/fix/myorg-endpoint
raheeliftikhar5 Jul 11, 2025
e6a450d
Merge pull request #1858 from kamalqureshi/publish_app_groups_members
raheeliftikhar5 Jul 11, 2025
d6ff092
Merge pull request #1860 from kamalqureshi/custom_tag_multiselect
raheeliftikhar5 Jul 11, 2025
cc2e8d5
Created test case for the ApplicationHistorySnapshotEndpoints.
thomas37-star Jul 11, 2025
ab233a5
Created test case for the ApplicationHistorySnapshotEndpoints.
thomas37-star Jul 11, 2025
6560014
fixed text input glitch
raheeliftikhar5 Jul 12, 2025
bf68435
Adding function Calls to Timer Component
Jul 13, 2025
fe41be8
Merge branch 'dev' into actions_js_console
kamalqureshi Jul 14, 2025
c78ff66
multiple new actions added
kamalqureshi Jul 14, 2025
97b4f28
Updated Global CSS
kamalqureshi Jul 14, 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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ const SelectWrapper = styled.div<{ $border?: boolean }>`
padding: ${(props) => (props.$border ? "0px" : "0 0 0 12px")};
height: 100%;
align-items: center;
margin-right: 8px;
margin-right: 10px;
padding-right: 5px;
background-color: #fff;

.ant-select-selection-item {
Expand All @@ -46,9 +47,9 @@ const SelectWrapper = styled.div<{ $border?: boolean }>`
}

.ant-select-arrow {
width: 20px;
height: 20px;
right: 8px;
width: 17px;
height: 17px;
right: 10px;
top: 0;
bottom: 0;
margin: auto;
Expand Down
11 changes: 7 additions & 4 deletions client/packages/lowcoder/src/api/userApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,13 @@ export type GetCurrentUserResponse = GenericApiResponse<CurrentUser>;
export interface GetMyOrgsResponse extends ApiResponse {
data: {
data: Array<{
orgId: string;
orgName: string;
createdAt?: number;
updatedAt?: number;
isCurrentOrg: boolean;
orgView: {
orgId: string;
orgName: string;
createdAt?: number;
updatedAt?: number;
};
}>;
pageNum: number;
pageSize: number;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ function PermissionTagRender(props: CustomTagProps) {
color={value}
closable={closable}
onClose={onClose}
style={{ marginRight: 3 }}
style={{ marginRight: 3, display: "flex", alignItems: "center" }}
>
{label}
</StyledTag>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,20 @@ import {
renameComponentAction,
deleteComponentAction,
resizeComponentAction,
configureComponentAction,
changeLayoutAction,
configureAppMetaAction,
addEventHandlerAction,
applyStyleAction,
nestComponentAction
nestComponentAction,
updateDynamicLayoutAction,
publishAppAction,
shareAppAction,
testAllDatasourcesAction,
applyGlobalJSAction,
applyCSSAction,
applyThemeAction,
setCanvasSettingsAction,
setCustomShortcutsAction,
alignComponentAction
} from "./actions";

export const actionCategories: ActionCategory[] = [
Expand All @@ -26,14 +35,24 @@ export const actionCategories: ActionCategory[] = [
]
},
{
key: 'component-configuration',
label: 'Component Configuration',
actions: [configureComponentAction]
key: 'app-configuration',
label: 'App Configuration',
actions: [
configureAppMetaAction,
publishAppAction,
shareAppAction,
testAllDatasourcesAction,
applyGlobalJSAction,
applyCSSAction,
applyThemeAction,
setCanvasSettingsAction,
setCustomShortcutsAction
]
},
{
key: 'layout',
label: 'Layout',
actions: [changeLayoutAction]
actions: [updateDynamicLayoutAction, alignComponentAction]
},
{
key: 'events',
Expand Down
Loading
Loading