diff --git a/packages/blocksAntd/demo/examples/Divider.yaml b/packages/blocksAntd/demo/examples/Divider.yaml
index 072a4aa8d..1c8348e2f 100644
--- a/packages/blocksAntd/demo/examples/Divider.yaml
+++ b/packages/blocksAntd/demo/examples/Divider.yaml
@@ -18,11 +18,21 @@
properties:
title: Divider title
orientation: right
+- id: 'properties.orientation: center'
+ type: Divider
+ properties:
+ title: Divider title
+ orientation: center
- id: 'properties.type: vertical'
type: Divider
properties:
title: Divider title
type: vertical
+- id: 'properties.type: horizontal'
+ type: Divider
+ properties:
+ title: Divider title
+ type: horizontal
- id: 'properties.type: true'
type: Divider
properties:
diff --git a/packages/blocksAntd/tests/__snapshots__/Divider.test.js.snap b/packages/blocksAntd/tests/__snapshots__/Divider.test.js.snap
index 4addadb4b..ee203613a 100644
--- a/packages/blocksAntd/tests/__snapshots__/Divider.test.js.snap
+++ b/packages/blocksAntd/tests/__snapshots__/Divider.test.js.snap
@@ -8,6 +8,56 @@ exports[`Render default 1`] = `
/>
`;
+exports[`Render properties.dashed: true 1`] = `
+
+`;
+
+exports[`Render properties.orientation: center 1`] = `
+
+
+ Divider title
+
+
+`;
+
+exports[`Render properties.orientation: left 1`] = `
+
+
+ Divider title
+
+
+`;
+
+exports[`Render properties.orientation: right 1`] = `
+
+
+ Divider title
+
+
+`;
+
exports[`Render properties.title 1`] = `
`;
+exports[`Render properties.type: horizontal 1`] = `
+
+
+ Divider title
+
+
+`;
+
+exports[`Render properties.type: true 1`] = `
+
+
+ Divider title
+
+
+`;
+
+exports[`Render properties.type: vertical 1`] = `
+
+
+ Divider title
+
+
+`;
+
exports[`Test Schema default 1`] = `true`;
exports[`Test Schema default 2`] = `null`;
+exports[`Test Schema properties.dashed: true 1`] = `true`;
+
+exports[`Test Schema properties.dashed: true 2`] = `null`;
+
+exports[`Test Schema properties.orientation: center 1`] = `true`;
+
+exports[`Test Schema properties.orientation: center 2`] = `null`;
+
+exports[`Test Schema properties.orientation: left 1`] = `true`;
+
+exports[`Test Schema properties.orientation: left 2`] = `null`;
+
+exports[`Test Schema properties.orientation: right 1`] = `true`;
+
+exports[`Test Schema properties.orientation: right 2`] = `null`;
+
exports[`Test Schema properties.title 1`] = `true`;
exports[`Test Schema properties.title 2`] = `null`;
+
+exports[`Test Schema properties.type: horizontal 1`] = `true`;
+
+exports[`Test Schema properties.type: horizontal 2`] = `null`;
+
+exports[`Test Schema properties.type: true 1`] = `true`;
+
+exports[`Test Schema properties.type: true 2`] = `null`;
+
+exports[`Test Schema properties.type: vertical 1`] = `true`;
+
+exports[`Test Schema properties.type: vertical 2`] = `null`;