Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
kamalqureshi wants to merge23 commits intolowcoder-org:feat/assistant
base:feat/assistant
Choose a base branch
Loading
fromkamalqureshi:actions_js_console
Open
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
23 commits
Select commitHold shift + click to select a range
09f315c
Adds dynamic layer indexing
kamalqureshiJul 8, 2025
b29680f
fixed: Layout components issue, children components depth issues
kamalqureshiJul 8, 2025
729130e
Event handlers for all components.
kamalqureshiJul 9, 2025
0cc5892
Update App meta data
kamalqureshiJul 10, 2025
9d67db7
Created test case for the ApplicationApiService.
thomas37-starJul 10, 2025
cc45a08
Publish App, Test App, Apply Global JS and CSS
kamalqureshiJul 10, 2025
f9128ea
Created test case for the ApplicationEndpointsTest.
thomas37-starJul 10, 2025
1a587df
fix workspaces updated myorg endpoint
iamfaranJul 11, 2025
53fb65d
fix orglist active org icon
iamfaranJul 11, 2025
c7e6081
Sharing App Permissions
kamalqureshiJul 11, 2025
56c1c55
Updated CustomSelector UI
kamalqureshiJul 11, 2025
d2f2a4c
Adding Tooltip to Multiselect custom tags
kamalqureshiJul 11, 2025
2103cfe
Merge branch 'dev' into actions_js_console
kamalqureshiJul 11, 2025
34c6351
Merge pull request #1859 from iamfaran/fix/myorg-endpoint
raheeliftikhar5Jul 11, 2025
e6a450d
Merge pull request #1858 from kamalqureshi/publish_app_groups_members
raheeliftikhar5Jul 11, 2025
d6ff092
Merge pull request #1860 from kamalqureshi/custom_tag_multiselect
raheeliftikhar5Jul 11, 2025
cc2e8d5
Created test case for the ApplicationHistorySnapshotEndpoints.
thomas37-starJul 11, 2025
ab233a5
Created test case for the ApplicationHistorySnapshotEndpoints.
thomas37-starJul 11, 2025
6560014
fixed text input glitch
raheeliftikhar5Jul 12, 2025
bf68435
Adding function Calls to Timer Component
Jul 13, 2025
fe41be8
Merge branch 'dev' into actions_js_console
kamalqureshiJul 14, 2025
c78ff66
multiple new actions added
kamalqureshiJul 14, 2025
97b4f28
Updated Global CSS
kamalqureshiJul 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
View file
Open in desktop
Original file line numberDiff line numberDiff 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 deletionsclient/packages/lowcoder/src/api/userApi.ts
View file
Open in desktop
Original file line numberDiff line numberDiff 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
View file
Open in desktop
Original file line numberDiff line numberDiff 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
View file
Open in desktop
Original file line numberDiff line numberDiff 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

[8]ページ先頭

©2009-2025 Movatter.jp