From a44339c4495f21cf26d758479f9b83b4588f027b Mon Sep 17 00:00:00 2001 From: adnanqaops Date: Fri, 27 Jun 2025 12:05:45 +0500 Subject: [PATCH] added updates to Components documentation based of Falk's feedback --- .../examples/CalendarInputComp/Calendar.tsx | 48 --- .../examples/ChartsComp/BarChart.tsx | 346 ++++++++++++++++++ .../examples/ChartsComp/LineChart.tsx | 267 ++++++++++++++ .../examples/ChartsComp/PieChart.tsx | 188 ++++++++++ .../examples/ChartsComp/ScatterChart.tsx | 274 ++++++++++++++ .../examples/ContainersComp/Container.tsx | 2 +- .../ContainersComp/FloatTextContainer.tsx | 288 ++++++++++++++- .../examples/ContainersComp/PageLayout.tsx | 52 --- .../ContainersComp/ResponsiveLayout.tsx | 118 ------ .../ContainersComp/TabbedContainer.tsx | 127 ------- .../pages/ComponentDoc/examples/IFrame.tsx | 11 +- .../examples/MediaComp/ContentCard.tsx | 12 + .../ComponentDoc/examples/formComp/Form.tsx | 48 --- .../examples/formComp/JSONEditor.tsx | 45 --- .../examples/formComp/JSONExplorer.tsx | 45 --- .../examples/formComp/JSONSchemaform.tsx | 45 --- .../src/pages/ComponentDoc/examples/index.ts | 8 + .../examples/presentationComp/comment.tsx | 44 --- .../presentationComp/customComponent.tsx | 25 +- .../examples/presentationComp/fileViewer.tsx | 57 --- .../examples/presentationComp/gridView.tsx | 51 --- .../examples/presentationComp/listView.tsx | 51 --- 22 files changed, 1400 insertions(+), 752 deletions(-) create mode 100644 client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/BarChart.tsx create mode 100644 client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/LineChart.tsx create mode 100644 client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/PieChart.tsx create mode 100644 client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/ScatterChart.tsx diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/Calendar.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/Calendar.tsx index b7547a9749..e997434c84 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/Calendar.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/Calendar.tsx @@ -296,54 +296,6 @@ export default function CalendarExample() { compFactory={ChartCompWithDefault} /> - - - - - - ); } \ No newline at end of file diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/BarChart.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/BarChart.tsx new file mode 100644 index 0000000000..feb7ce59c7 --- /dev/null +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/BarChart.tsx @@ -0,0 +1,346 @@ +import { uiCompRegistry } from "comps/uiCompRegistry"; +import { trans } from "i18n"; +import { chartColorPalette } from "lowcoder-design"; +import Example from "../../common/Example"; +import ExampleGroup from "../../common/ExampleGroup"; + +const ChartCompWithDefault = uiCompRegistry["barChart"].comp; + +const chartStyle= { + background: "linear-gradient(135deg, #72afd3 0%, #96e6a1 100%)", + chartBorderColor: "#FDFAFA", + chartBorderStyle: "solid", + chartBorderWidth: "2", + chartBoxShadow: "200", + chartShadowColor: "#3377FF" +} + +const titleStyle = { + chartBoxShadow: "9", + chartFontStyle: "Italic", + chartShadowColor: "#FFBD01", + chartTextColor: "#36B389", + chartTextSize: "30", + chartTextWeight: "Bold" +} + +const xAxisStyle = { + chartBoxShadow: "5", + chartFontFamily: "serif", + chartFontStyle: "Italic", + chartShadowColor: "#020101", + chartTextColor: "#971827", + chartTextSize: "20", + chartTextWeight: "bold" +} + +const yAxisStyle = { + chartBoxShadow: "5", + chartFontFamily: "serif", + chartFontStyle: "Italic", + chartShadowColor: "#FFD701", + chartTextColor: "#7A7A7B", + chartTextSize: "20", + chartTextWeight: "bold" +} + +export default function BarChartExample() { + return ( + <> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +} diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/LineChart.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/LineChart.tsx new file mode 100644 index 0000000000..4acfd3b3d4 --- /dev/null +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/LineChart.tsx @@ -0,0 +1,267 @@ +import { uiCompRegistry } from "comps/uiCompRegistry"; +import { trans } from "i18n"; +import { chartColorPalette } from "lowcoder-design"; +import Example from "../../common/Example"; +import ExampleGroup from "../../common/ExampleGroup"; + +const ChartCompWithDefault = uiCompRegistry["lineChart"].comp; + +const chartStyle= { + background: "linear-gradient(135deg, #72afd3 0%, #96e6a1 100%)", + chartBorderColor: "#FDFAFA", + chartBorderStyle: "solid", + chartBorderWidth: "2", + chartBoxShadow: "200", + chartShadowColor: "#3377FF" +} + +const titleStyle = { + chartBoxShadow: "9", + chartFontStyle: "Italic", + chartShadowColor: "#FFBD01", + chartTextColor: "#36B389", + chartTextSize: "30", + chartTextWeight: "Bold" +} + +const xAxisStyle = { + chartBoxShadow: "5", + chartFontFamily: "serif", + chartFontStyle: "Italic", + chartShadowColor: "#020101", + chartTextColor: "#971827", + chartTextSize: "20", + chartTextWeight: "bold" +} + +const yAxisStyle = { + chartBoxShadow: "5", + chartFontFamily: "serif", + chartFontStyle: "Italic", + chartShadowColor: "#FFD701", + chartTextColor: "#7A7A7B", + chartTextSize: "20", + chartTextWeight: "bold" +} + +export default function LineChartExample() { + return ( + <> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +} diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/PieChart.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/PieChart.tsx new file mode 100644 index 0000000000..02532931e9 --- /dev/null +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/PieChart.tsx @@ -0,0 +1,188 @@ +import { uiCompRegistry } from "comps/uiCompRegistry"; +import { trans } from "i18n"; +import { chartColorPalette } from "lowcoder-design"; +import Example from "../../common/Example"; +import ExampleGroup from "../../common/ExampleGroup"; + +const ChartCompWithDefault = uiCompRegistry["pieChart"].comp; + +const chartStyle= { + background: "linear-gradient(135deg, #72afd3 0%, #96e6a1 100%)", + chartBorderColor: "#FDFAFA", + chartBorderStyle: "solid", + chartBorderWidth: "2", + chartBoxShadow: "200", + chartShadowColor: "#3377FF" +} + +const titleStyle = { + chartBoxShadow: "9", + chartFontStyle: "Italic", + chartShadowColor: "#FFBD01", + chartTextColor: "#36B389", + chartTextSize: "30", + chartTextWeight: "Bold" +} + +export default function PieChartExample() { + return ( + <> + + + + + + + + + + + + + + + + + + + + + + + ); +} diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/ScatterChart.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/ScatterChart.tsx new file mode 100644 index 0000000000..39524eb2c4 --- /dev/null +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ChartsComp/ScatterChart.tsx @@ -0,0 +1,274 @@ +import { uiCompRegistry } from "comps/uiCompRegistry"; +import { trans } from "i18n"; +import { chartColorPalette } from "lowcoder-design"; +import Example from "../../common/Example"; +import ExampleGroup from "../../common/ExampleGroup"; + +const ChartCompWithDefault = uiCompRegistry["scatterChart"].comp; + +const chartStyle= { + background: "linear-gradient(135deg, #72afd3 0%, #96e6a1 100%)", + chartBorderColor: "#FDFAFA", + chartBorderStyle: "solid", + chartBorderWidth: "2", + chartBoxShadow: "200", + chartShadowColor: "#3377FF" +} + +const titleStyle = { + chartBoxShadow: "9", + chartFontStyle: "Italic", + chartShadowColor: "#FFBD01", + chartTextColor: "#36B389", + chartTextSize: "30", + chartTextWeight: "Bold" +} + +const xAxisStyle = { + chartBoxShadow: "5", + chartFontFamily: "serif", + chartFontStyle: "Italic", + chartShadowColor: "#020101", + chartTextColor: "#971827", + chartTextSize: "20", + chartTextWeight: "bold" +} + +const yAxisStyle = { + chartBoxShadow: "5", + chartFontFamily: "serif", + chartFontStyle: "Italic", + chartShadowColor: "#FFD701", + chartTextColor: "#7A7A7B", + chartTextSize: "20", + chartTextWeight: "bold" +} + +export default function ScatterChartExample() { + return ( + <> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +} diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/Container.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/Container.tsx index 40736a95a6..450bfef8cb 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/Container.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/Container.tsx @@ -1296,7 +1296,7 @@ export default function ContainerExample() { }} compFactory={ContainerComp} /> - + ); } \ No newline at end of file diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/FloatTextContainer.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/FloatTextContainer.tsx index 7a15787737..e138d9193f 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/FloatTextContainer.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/FloatTextContainer.tsx @@ -1,4 +1,4 @@ -import { ContainerComp } from "comps/comps/containerComp/containerComp"; +import { ContainerComp } from "comps/comps/containerComp/textContainerComp"; import { trans } from "i18n"; import { chartColorPalette } from "lowcoder-design"; import Example from "../../common/Example"; @@ -7,8 +7,8 @@ import ExampleGroup from "../../common/ExampleGroup"; const container = { "header": { "layout": { - "f1e0a72f": { - "i": "f1e0a72f", + "643c61b9": { + "i": "643c61b9", "h": 5, "w": 24, "x": 0, @@ -16,7 +16,7 @@ const container = { } }, "items": { - "f1e0a72f": { + "643c61b9": { "compType": "text", "comp": { "text": "### Displayed Container Title", @@ -37,6 +37,7 @@ const container = { "top": "", "bottom": "" }, + "showDataLoadingIndicators": false, "preventStyleOverwriting": false, "appliedThemeId": "", "version": "latest" @@ -49,22 +50,40 @@ const container = { "0": { "view": { "layout": { - "e13e96e1": { - "i": "e13e96e1", - "h": 20, - "w": 17, - "x": 3, - "y": 1, + "157ca74a": { + "i": "157ca74a", + "h": 21, + "w": 24, + "x": 0, + "y": 0, "pos": 0 } }, "items": { - "e13e96e1": { + "157ca74a": { "compType": "image", "comp": { - "src": "https://temp.im/350x400", + "sourceMode": "standard", + "src": "https://framerusercontent.com/images/Ks478GmT2s9Ewl2BhCGGJWDqdKo.jpg?scale-down-to=4096", + "iconScoutAsset": { + "uuid": "", + "value": "", + "preview": "" + }, + "style": { + "margin": "0px", + "padding": "0px" + }, + "clipPath": "none", "autoHeight": "fixed", "restrictPaddingOnRotation": "image", + "enableOverflow": false, + "aspectRatio": "16 / 9", + "placement": "top", + "overflow": "hidden", + "positionX": "center", + "positionY": "center", + "showDataLoadingIndicators": false, "preventStyleOverwriting": false, "appliedThemeId": "", "version": "latest" @@ -80,7 +99,6 @@ const container = { }, "showHeader": true, "showBody": true, - "showFooter": true, "autoHeight": "auto", "showVerticalScrollbar": false, "horizontalGridCells": 24, @@ -91,19 +109,240 @@ const container = { "appliedThemeId": "" }; -const text ="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi feugiat faucibus eleifend. Pellentesque eleifend, risus vel sagittis mattis, mauris ipsum tempor sapien, eu lobortis lacus libero a dui. Cras erat felis, rhoncus vestibulum consectetur et, ultrices ut purus. Sed a tortor orci. Vestibulum nec eleifend ante."; +const text ="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi feugiat faucibus eleifend. Pellentesque eleifend, risus vel sagittis mattis, mauris ipsum tempor sapien, eu lobortis lacus libero a dui. Cras erat felis, rhoncus vestibulum consectetur et, ultrices ut purus. Sed a tortor orci. Vestibulum nec eleifend ante.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi feugiat faucibus eleifend. Pellentesque eleifend, risus vel sagittis mattis, mauris ipsum tempor sapien, eu lobortis lacus libero a dui. Cras erat felis, rhoncus vestibulum consectetur et, ultrices ut purus. Sed a tortor orci. Vestibulum nec eleifend ante."; export default function FloatTextContainerExample() { return ( <> + + + + + + + + + + + + + + + + + + + diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/PageLayout.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/PageLayout.tsx index 3c1d84e380..80c8d899eb 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/PageLayout.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/PageLayout.tsx @@ -8271,58 +8271,6 @@ export default function PageLayoutExample() { compFactory={PageLayoutComp} /> - - - - - - ); } \ No newline at end of file diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/ResponsiveLayout.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/ResponsiveLayout.tsx index 02e34dd8a7..d3b9391c2b 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/ResponsiveLayout.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/ResponsiveLayout.tsx @@ -477,124 +477,6 @@ export default function ResponsiveLayoutExample() { compFactory={ResponsiveLayoutComp} /> - - - - - - ); } \ No newline at end of file diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/TabbedContainer.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/TabbedContainer.tsx index 93c78ec9c0..24c12c89d8 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/TabbedContainer.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ContainersComp/TabbedContainer.tsx @@ -469,133 +469,6 @@ export default function TabbedContainerExample() { compFactory={TabbedContainerComp} /> - - - - - - ); } \ No newline at end of file diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/IFrame.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/IFrame.tsx index 49b1fd0dba..dc53b544bb 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/IFrame.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/IFrame.tsx @@ -12,20 +12,27 @@ export default function IFrameExample() { > + ); } diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/MediaComp/ContentCard.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/MediaComp/ContentCard.tsx index 5a6e1d6c0a..4422173372 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/MediaComp/ContentCard.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/MediaComp/ContentCard.tsx @@ -13,6 +13,7 @@ export default function ContentCardExample() { title="Hiding the Card Component" config={{ hidden: true, + imgSrc: "https://framerusercontent.com/images/Ks478GmT2s9Ewl2BhCGGJWDqdKo.jpg?scale-down-to=4096", }} compFactory={CardComp} /> @@ -20,6 +21,7 @@ export default function ContentCardExample() { title="Hiding the Title" config={{ showTitle: false, + imgSrc: "https://framerusercontent.com/images/Ks478GmT2s9Ewl2BhCGGJWDqdKo.jpg?scale-down-to=4096", }} compFactory={CardComp} /> @@ -27,6 +29,7 @@ export default function ContentCardExample() { title="Hiding the Content Title & Description" config={{ showMeta: false, + imgSrc: "https://framerusercontent.com/images/Ks478GmT2s9Ewl2BhCGGJWDqdKo.jpg?scale-down-to=4096", }} compFactory={CardComp} /> @@ -34,12 +37,14 @@ export default function ContentCardExample() { title="Hiding the Action Items" config={{ showActionIcon: false, + imgSrc: "https://framerusercontent.com/images/Ks478GmT2s9Ewl2BhCGGJWDqdKo.jpg?scale-down-to=4096", }} compFactory={CardComp} /> - - - - - - ); } diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/formComp/JSONEditor.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/formComp/JSONEditor.tsx index 6f618a8631..63b8c49473 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/formComp/JSONEditor.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/formComp/JSONEditor.tsx @@ -121,51 +121,6 @@ export default function JsonEditorExample() { compFactory={JsonEditorComp} /> - - - - - - ); } diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/formComp/JSONExplorer.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/formComp/JSONExplorer.tsx index 156e3b15f0..022c550881 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/formComp/JSONExplorer.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/formComp/JSONExplorer.tsx @@ -68,51 +68,6 @@ export default function JsonExplorerExample() { compFactory={JsonExplorerComp} /> - - - - - - ); } diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/formComp/JSONSchemaform.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/formComp/JSONSchemaform.tsx index 834169e73a..84b9f1848a 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/formComp/JSONSchemaform.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/formComp/JSONSchemaform.tsx @@ -59,51 +59,6 @@ export default function jsonSchemaFormExample() { compFactory={JsonSchemaFormComp} /> - - - - - - ); } diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/index.ts b/client/packages/lowcoder/src/pages/ComponentDoc/examples/index.ts index ca2388e951..95748258ab 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/index.ts +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/index.ts @@ -97,6 +97,10 @@ import DrawerExample from "./ChartsComp/Drawer"; import CollapsibleContainerExample from "./ContainersComp/CollapsibleContainer"; import FloatTextContainerExample from "./ContainersComp/FloatTextContainer"; import SplitLayoutExample from "./ContainersComp/SplitLayout"; +import BarChartExample from "./ChartsComp/BarChart"; +import LineChartExample from "./ChartsComp/LineChart"; +import PieChartExample from "./ChartsComp/PieChart"; +import ScatterChartExample from "./ChartsComp/ScatterChart"; const examples: { [key in UICompType]?: React.FunctionComponent } = { button: ButtonExample, @@ -171,6 +175,7 @@ const examples: { [key in UICompType]?: React.FunctionComponent } = { candleStickChart: CandleStickChartExample, grid: GridViewExample, modal: ModalExample, + barChart: BarChartExample, funnelChart: FunnelChartExample, gaugeChart: GaugeChartExample, graphChart: GraphChartExample, @@ -197,6 +202,9 @@ const examples: { [key in UICompType]?: React.FunctionComponent } = { collapsibleContainer: CollapsibleContainerExample, floatTextContainer: FloatTextContainerExample, splitLayout: SplitLayoutExample, + lineChart: LineChartExample, + pieChart: PieChartExample, + scatterChart: ScatterChartExample, }; export default examples; diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/comment.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/comment.tsx index 1c4123a1d9..aac2f4d4d7 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/comment.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/comment.tsx @@ -78,50 +78,6 @@ export default function CommentExample() { /> - - - - - ); } diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/customComponent.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/customComponent.tsx index c405d11287..21fc40660c 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/customComponent.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/customComponent.tsx @@ -8,16 +8,37 @@ export default function CustomCompExample() { <> + + ); diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/fileViewer.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/fileViewer.tsx index f351eeef75..13993d8b8f 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/fileViewer.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/fileViewer.tsx @@ -77,63 +77,6 @@ export default function FileViewerExample() { compFactory={FileViewerComp} /> - - - - - - ); } diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/gridView.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/gridView.tsx index 404e179084..73aa6d8205 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/gridView.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/gridView.tsx @@ -293,57 +293,6 @@ export default function GridViewExample() { compFactory={GridComp} /> - - - - - - ); } diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/listView.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/listView.tsx index a00a6c1911..fe1873b157 100644 --- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/listView.tsx +++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/listView.tsx @@ -286,57 +286,6 @@ export default function ListViewExample() { compFactory={ListViewComp} /> - - - - - - ); } pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy