Skip to content

Dev - Feature Branch Update #657

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

Merged
merged 43 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
b7a9b43
Merge pull request #632 from lowcoder-org/dev
FalkWolsky Jan 14, 2024
6f055ab
separate container styling into header, footer and body styles
raheeliftikhar5 Jan 16, 2024
90babb9
Merge pull request #640 from raheeliftikhar5/container-styling
FalkWolsky Jan 16, 2024
fb51faa
Style Update and Icon Introduction
Jan 16, 2024
dda2b04
Adding Font Family to Text Display
Jan 16, 2024
62db501
new: rename and consolidate environment variables
ludomikula Jan 15, 2024
27ca2d4
new: rename and consolidate environment variables
ludomikula Jan 15, 2024
0d40d43
Merge pull request #641 from lowcoder-org/env-variables-cleanup
FalkWolsky Jan 16, 2024
d5eb4b3
Icon Fix in Table Column Editor
Jan 16, 2024
e60d2d0
Setting the Version
Jan 16, 2024
0fae9ef
updated hillchart comp
raheeliftikhar5 Jan 16, 2024
689cc21
Merge branch 'dev' into update-hillchart
FalkWolsky Jan 16, 2024
a7f20af
Merge pull request #642 from raheeliftikhar5/update-hillchart
FalkWolsky Jan 16, 2024
7ebe581
Fixing tabbed container showHeader
Jan 16, 2024
8c70129
Version Naming and small Fixes
Jan 17, 2024
850642e
Merge branch 'main' into dev
FalkWolsky Jan 17, 2024
82e21ec
Merge pull request #643 from lowcoder-org/dev
FalkWolsky Jan 17, 2024
3856adc
fix table docs
raheeliftikhar5 Jan 17, 2024
07692eb
Merge branch 'dev' into table-doc-fix
FalkWolsky Jan 17, 2024
a3e8257
Merge pull request #644 from raheeliftikhar5/table-doc-fix
FalkWolsky Jan 17, 2024
b5a7c9a
Merge branch 'main' into dev
FalkWolsky Jan 17, 2024
788b3ad
fix custom component
raheeliftikhar5 Jan 17, 2024
9d0cab1
Merge pull request #646 from raheeliftikhar5/custom-comp-fix
FalkWolsky Jan 17, 2024
d19c210
fix rerendering apps in sdk
raheeliftikhar5 Jan 19, 2024
9da2673
Merge pull request #648 from raheeliftikhar5/sdk-rerendering-fix
FalkWolsky Jan 19, 2024
4033a9d
Merge pull request #645 from lowcoder-org/dev
FalkWolsky Jan 19, 2024
951b904
fix repositoryUrl check in workflows
raheeliftikhar5 Jan 19, 2024
54cf4db
fix styles for sortable column header
raheeliftikhar5 Jan 19, 2024
f341397
adding background styles in container
raheeliftikhar5 Jan 19, 2024
e818a27
adding background styles in container
raheeliftikhar5 Jan 19, 2024
c063b69
updated tabs container styles
raheeliftikhar5 Jan 19, 2024
a0199e4
handle form height based for fixed height setting
raheeliftikhar5 Jan 19, 2024
faba3f7
Merge pull request #649 from raheeliftikhar5/table-fixes
FalkWolsky Jan 19, 2024
2344a04
Merge branch 'main' into dev
FalkWolsky Jan 19, 2024
2f38c64
Merge pull request #650 from lowcoder-org/dev
FalkWolsky Jan 19, 2024
5c225cc
column data mapping
raheeliftikhar5 Jan 18, 2024
e47d9e9
Update javascript-query.md
mdpung Jan 22, 2024
155fbae
dynamice populate columns for data mapping
raheeliftikhar5 Jan 23, 2024
026da8f
Merge pull request #652 from mdpung/patch-1
FalkWolsky Jan 23, 2024
5b589c0
Merge branch 'dev' into table-column-data-mapping
FalkWolsky Jan 23, 2024
a0fd241
Merge pull request #653 from raheeliftikhar5/table-column-data-mapping
FalkWolsky Jan 23, 2024
964fadf
upgrade antd to v5.13.2
raheeliftikhar5 Jan 23, 2024
16e8b29
Merge pull request #655 from raheeliftikhar5/antd-upgrade-5.13.2
FalkWolsky Jan 24, 2024
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
upgrade antd to v5.13.2
  • Loading branch information
raheeliftikhar5 committed Jan 23, 2024
commit 964fadf310ff8d527439c49623c1aa3364f6a01d
2 changes: 1 addition & 1 deletion client/packages/lowcoder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"agora-access-token": "^2.0.4",
"agora-rtc-sdk-ng": "^4.19.0",
"agora-rtm-sdk": "^1.5.1",
"antd": "^5.12.5",
"antd": "^5.13.2",
"axios": "^1.6.2",
"buffer": "^6.0.3",
"clsx": "^2.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -369,10 +369,10 @@ const PermissionSelector = (props: {
width: "fit-content",
}}
$isVisible={roleSelectVisible}
bordered={false}
variant="borderless"
defaultValue={props.supportRoles[0]}
optionLabelProp="label"
onChange={(value) => setSelectRole(value)}
onChange={(value: string) => setSelectRole(value as ApplicationRoleType)}
>
{props.supportRoles.map((role) => (
<CustomSelect.Option key={role.value} value={role.value} label={role.label}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function PermissionLiItem(props: {
width: "100px",
}}
defaultValue={permissionItem.role}
bordered={false}
variant="borderless"
optionLabelProp="label"
onSelect={(value: any, option: any) => {
if (option.key === "delete") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { omit } from "lodash";

const { RangePicker } = DatePicker;

const RangePickerStyled = styled((props: any) => <RangePicker {...props} />)<{ $style: DateTimeStyleType }>`
const RangePickerStyled = styled(RangePicker)<{ $style: DateTimeStyleType }>`
width: 100%;
${(props) => props.$style && getStyle(props.$style)}
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -509,8 +509,11 @@ let MTComp = (function () {
? { overflow: "auto", pointerEvents: "auto" }
: {}
}
contentWrapperStyle={{ maxHeight: "100%", maxWidth: "100%" }}
styles={{
wrapper: {
maxHeight: "100%",
maxWidth: "100%"
},
body: {
padding: 0,
backgroundColor: props.style.background,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const ColumnNumberComp = (function () {
step={step}
defaultValue={props.value}
autoFocus
bordered={false}
variant="borderless"
onChange={(value) => {
value = value ?? 0;
props.onChange(!float ? Math.floor(value) : value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export const DateEdit = (props: DateEditProps) => {
superNextIcon={<IconSuperNext />}
superPrevIcon={<SuperPrevIcon />}
allowClear={false}
bordered={false}
variant="borderless"
autoFocus
defaultValue={value}
showTime={props.showTime}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const ImageComp = (function () {
<Input
defaultValue={props.value}
autoFocus
bordered={false}
variant="borderless"
onChange={(e) => {
const value = e.target.value;
props.onChange(value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const LinkComp = (function () {
<Input
defaultValue={props.value}
autoFocus
bordered={false}
variant="borderless"
onChange={(e) => {
const value = e.target.value;
props.onChange(value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const ColumnMarkdownComp = (function () {
<Input
defaultValue={props.value}
autoFocus
bordered={false}
variant="borderless"
onChange={(e) => {
const value = e.target.value;
props.onChange(value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const ProgressComp = (function () {
max={100}
defaultValue={props.value}
autoFocus
bordered={false}
variant="borderless"
controls={{ upIcon: <TablePlusIcon />, downIcon: <TableMinusIcon /> }}
onChange={(value) => {
props.onChange(Number(value));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ const StatusEdit = (props: StatusEditPropsType) => {
<CustomSelect
autoFocus
defaultOpen
bordered={false}
variant="borderless"
optionLabelProp="children"
open={open}
defaultValue={props.value.value}
style={{ width: "100%" }}
suffixIcon={<PackUpIcon />}
showSearch
onSearch={(value) => {
onSearch={(value: string) => {
if (defaultStatus.findIndex((item) => item.text.includes(value)) < 0) {
setStatus([
...defaultStatus,
Expand All @@ -77,7 +77,7 @@ const StatusEdit = (props: StatusEditPropsType) => {
status: status.find((item) => item.text === value)?.status || "none",
});
}}
onChange={(value) => {
onChange={(value: string) => {
props.onChange({
value,
status: status.find((item) => item.text === value)?.status || "none",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,22 +170,22 @@ const TagEdit = (props: TagEditPropsType) => {
<CustomSelect
autoFocus
defaultOpen
bordered={false}
variant="borderless"
optionLabelProp="children"
showSearch
defaultValue={props.value}
style={{ width: "100%" }}
open={open}
suffixIcon={<PackUpIcon />}
onSearch={(value) => {
onSearch={(value: string) => {
if (defaultTags.findIndex((item) => item.includes(value)) < 0) {
setTags([...defaultTags, value]);
} else {
setTags(defaultTags);
}
props.onChange(value);
}}
onChange={(value) => {
onChange={(value: string | string[]) => {
props.onChange(value);
}}
dropdownRender={(originNode: ReactNode) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const SimpleTextComp = (function () {
<Input
defaultValue={props.value}
autoFocus
bordered={false}
variant="borderless"
onChange={(e) => {
const value = e.target.value;
props.onChange(value);
Expand Down
5 changes: 4 additions & 1 deletion client/packages/lowcoder/src/comps/hooks/drawerComp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,11 @@ let TmpDrawerComp = (function () {
resizable={resizable}
onResizeStop={onResizeStop}
rootStyle={props.visible.value ? { overflow: "auto", pointerEvents: "auto" } : {}}
contentWrapperStyle={{ maxHeight: "100%", maxWidth: "100%" }}
styles={{
wrapper: {
maxHeight: "100%",
maxWidth: "100%",
},
body: {
padding: 0,
backgroundColor: props.style.background
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -365,17 +365,17 @@ export function HomeLayout(props: HomeLayoutProps) {
<OperationWrapper>
{mode !== "folders" && mode !== "module" && (
<FilterDropdown
bordered={false}
variant="borderless"
value={filterBy}
onChange={(value) => setFilterBy(value as HomeResKey)}
onChange={(value: any) => setFilterBy(value as HomeResKey)}
options={[
getFilterMenuItem(HomeResTypeEnum.All),
getFilterMenuItem(HomeResTypeEnum.Application),
getFilterMenuItem(HomeResTypeEnum.Module),
getFilterMenuItem(HomeResTypeEnum.Navigation),
...(mode !== "trash" ? [getFilterMenuItem(HomeResTypeEnum.Folder)] : []),
]}
getPopupContainer={(node) => node}
getPopupContainer={(node: any) => node}
suffixIcon={<ArrowSolidIcon />}
/>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,11 +280,6 @@ export default function BottomMetaDrawer(props: BottomMetaDrawerProps) {
<Drawer
$vis={visible}
mask={false}
contentWrapperStyle={{
height: "100%",
boxShadow: "none",
borderRadius: "0",
}}
rootStyle={{
position: "absolute",
height: "100%",
Expand All @@ -294,6 +289,11 @@ export default function BottomMetaDrawer(props: BottomMetaDrawerProps) {
title={<DrawerTitleView />}
styles={{
header: headerWrapperStyle,
wrapper: {
height: "100%",
boxShadow: "none",
borderRadius: "0",
},
body: {
padding: "0 0 0 8px",
overflowX: "hidden",
Expand Down
Loading