diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ButtonComp/Button.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ButtonComp/Button.tsx
index 463033c64e..115ea91220 100644
--- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/ButtonComp/Button.tsx
+++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/ButtonComp/Button.tsx
@@ -29,6 +29,7 @@ export default function ButtonExample() {
compFactory={ButtonComp}
/>
+
-
+
-
-
-
+
+
+
+
+
+
>
);
diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/Time.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/Time.tsx
index f22bab5a80..efb8b6b30d 100644
--- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/Time.tsx
+++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/Time.tsx
@@ -29,6 +29,7 @@ export default function TimeExample() {
config={{
value: trans("componentDoc.noValue"),
format: "hh:mm:ss",
+ placeholder: "Select Time",
disabled: false,
label: {
text: trans("componentDoc.time"),
@@ -51,6 +52,7 @@ export default function TimeExample() {
compFactory={TimePickerComp}
/>
+
+
+
+
>
);
diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/TimeRange.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/TimeRange.tsx
index 0eae681fae..93d319b0e0 100644
--- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/TimeRange.tsx
+++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/CalendarInputComp/TimeRange.tsx
@@ -37,6 +37,7 @@ export default function TimeRangeExample() {
title={trans("componentDoc.noDefaultValue")}
config={{
format: "hh:mm:ss",
+ placeholder: "Select Time",
disabled: false,
label: {
text: trans("componentDoc.time"),
@@ -64,6 +65,7 @@ export default function TimeRangeExample() {
compFactory={TimeRangeComp}
/>
+
+
+
+
>
);
diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/numberInputComp/NumberInput.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/numberInputComp/NumberInput.tsx
index 67c1fb4f77..27745477d2 100644
--- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/numberInputComp/NumberInput.tsx
+++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/numberInputComp/NumberInput.tsx
@@ -54,6 +54,7 @@ export default function NumberInputExample() {
compFactory={NumberInputComp}
/>
+
+
+
+
+
diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/numberInputComp/Rating.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/numberInputComp/Rating.tsx
index 6e5dab2fb8..540602bf56 100644
--- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/numberInputComp/Rating.tsx
+++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/numberInputComp/Rating.tsx
@@ -16,7 +16,7 @@ export default function RatingExample() {
@@ -33,7 +33,7 @@ export default function RatingExample() {
title={trans("componentDoc.disabled")}
config={{
disabled: "true",
- value: "4",
+ defaultValue: "2",
}}
compFactory={RatingComp}
/>
@@ -48,7 +48,7 @@ export default function RatingExample() {
position: "row",
align: "left",
},
- value: "4",
+ defaultValue: "4",
}}
compFactory={RatingComp}
/>
@@ -60,7 +60,7 @@ export default function RatingExample() {
position: "row",
align: "right",
},
- value: "4",
+ defaultValue: "4",
}}
compFactory={RatingComp}
/>
@@ -72,7 +72,7 @@ export default function RatingExample() {
position: "column",
align: "left",
},
- value: "4",
+ defaultValue: "4",
}}
compFactory={RatingComp}
/>
@@ -84,16 +84,17 @@ export default function RatingExample() {
position: "column",
align: "right",
},
- value: "4",
+ defaultValue: "4",
}}
compFactory={RatingComp}
/>
+
+
diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/divider.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/divider.tsx
index a4c131d9c1..282ea94bce 100644
--- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/divider.tsx
+++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/presentationComp/divider.tsx
@@ -16,7 +16,13 @@ export default function DividerExample() {
title={trans("componentDoc.basicUsage")}
description={trans("componentDoc.basicDemoDescription")}
>
-
+
@@ -27,6 +33,7 @@ export default function DividerExample() {
title: trans("componentDoc.imADivider"),
align: "left",
color: "#222222",
+ style: {border: "#000", borderWidth: "2px"},
}}
compFactory={DividerComp}
/>
@@ -51,6 +58,7 @@ export default function DividerExample() {
compFactory={DividerComp}
/>
+
+
+
+
+
+
+
+
+
+
+
+
+
>
);
diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/textInputComp/Password.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/textInputComp/Password.tsx
index a27930c391..099aa37932 100644
--- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/textInputComp/Password.tsx
+++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/textInputComp/Password.tsx
@@ -53,6 +53,23 @@ export default function PasswordExample() {
}}
compFactory={PasswordComp}
/>
+
+
+
>
);
diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/textInputComp/RichTextEditor.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/textInputComp/RichTextEditor.tsx
index 79a2189135..ffbaab53b0 100644
--- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/textInputComp/RichTextEditor.tsx
+++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/textInputComp/RichTextEditor.tsx
@@ -10,7 +10,53 @@ export default function InputExample() {
title={trans("componentDoc.basicUsage")}
description={trans("componentDoc.basicDemoDescription")}
>
-
+
+
+
+
+
+
+
+
>
);
diff --git a/client/packages/lowcoder/src/pages/ComponentDoc/examples/textInputComp/TextArea.tsx b/client/packages/lowcoder/src/pages/ComponentDoc/examples/textInputComp/TextArea.tsx
index 6f92542e3b..a26f0391a7 100644
--- a/client/packages/lowcoder/src/pages/ComponentDoc/examples/textInputComp/TextArea.tsx
+++ b/client/packages/lowcoder/src/pages/ComponentDoc/examples/textInputComp/TextArea.tsx
@@ -18,6 +18,15 @@ export default function ButtonExample() {
}}
compFactory={TextAreaComp}
/>
+
+
+
+