mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-02-23 14:39:32 +08:00
Merge remote-tracking branch 'origin/feature/add-hash-operator' into feature/add-hash-operator
This commit is contained in:
commit
9b1ec6df0d
@ -34,9 +34,26 @@ class RenderHtml extends React.Component {
|
||||
}
|
||||
|
||||
render() {
|
||||
const { id, methods, style } = this.props;
|
||||
const { div, html, id, methods, style } = this.props;
|
||||
if (!html) {
|
||||
return '';
|
||||
}
|
||||
if (div === true) {
|
||||
return (
|
||||
<div
|
||||
id={id}
|
||||
data-testid={id}
|
||||
ref={(el) => {
|
||||
if (el) {
|
||||
this.div = el;
|
||||
}
|
||||
}}
|
||||
className={methods.makeCssClass(style)}
|
||||
/>
|
||||
);
|
||||
}
|
||||
return (
|
||||
<div
|
||||
<span
|
||||
id={id}
|
||||
data-testid={id}
|
||||
ref={(el) => {
|
||||
@ -44,7 +61,7 @@ class RenderHtml extends React.Component {
|
||||
this.div = el;
|
||||
}
|
||||
}}
|
||||
className={methods.makeCssClass([{ display: 'inline-block' }, style])}
|
||||
className={methods.makeCssClass(style)}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
@ -36,59 +36,45 @@ test('Render default', async () => {
|
||||
const wrapper = await mount(<RenderHtml methods={methods} />);
|
||||
await wrapper.instance().componentDidMount();
|
||||
await wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div class=\\"[{"display":"inline-block"},null]\\"></div>"`
|
||||
);
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(`""`);
|
||||
await wrapper.instance().componentDidUpdate();
|
||||
await wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div class=\\"[{"display":"inline-block"},null]\\"></div>"`
|
||||
);
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(`""`);
|
||||
});
|
||||
|
||||
test('Render default and id', async () => {
|
||||
const wrapper = await mount(<RenderHtml id="test-id" methods={methods} />);
|
||||
await wrapper.instance().componentDidMount();
|
||||
await wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div id=\\"test-id\\" data-testid=\\"test-id\\" class=\\"[{"display":"inline-block"},null]\\"></div>"`
|
||||
);
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(`""`);
|
||||
});
|
||||
|
||||
test('Render string', async () => {
|
||||
const wrapper = await mount(<RenderHtml html="A string value" methods={methods} />);
|
||||
await wrapper.instance().componentDidMount();
|
||||
await wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div class=\\"[{"display":"inline-block"},null]\\">A string value</div>"`
|
||||
);
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(`"<span>A string value</span>"`);
|
||||
});
|
||||
|
||||
test('Render number', async () => {
|
||||
const wrapper = await mount(<RenderHtml html={123} methods={methods} />);
|
||||
await wrapper.instance().componentDidMount();
|
||||
await wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div class=\\"[{"display":"inline-block"},null]\\">123</div>"`
|
||||
);
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(`"<span>123</span>"`);
|
||||
});
|
||||
|
||||
test('Render boolean', async () => {
|
||||
const wrapper = await mount(<RenderHtml html={false} methods={methods} />);
|
||||
await wrapper.instance().componentDidMount();
|
||||
await wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div class=\\"[{"display":"inline-block"},null]\\"></div>"`
|
||||
);
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(`""`);
|
||||
});
|
||||
|
||||
test('Render null', async () => {
|
||||
const wrapper = await mount(<RenderHtml html={null} methods={methods} />);
|
||||
await wrapper.instance().componentDidMount();
|
||||
await wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div class=\\"[{"display":"inline-block"},null]\\"></div>"`
|
||||
);
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(`""`);
|
||||
});
|
||||
|
||||
test('Render html', async () => {
|
||||
@ -101,7 +87,22 @@ test('Render html', async () => {
|
||||
await wrapper.instance().componentDidMount();
|
||||
await wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div class=\\"[{"display":"inline-block"},null]\\"><div style=\\"background: green; padding: 10px;\\">Content green background</div></div>"`
|
||||
`"<span><div style=\\"background: green; padding: 10px;\\">Content green background</div></span>"`
|
||||
);
|
||||
});
|
||||
|
||||
test('Render html div', async () => {
|
||||
const wrapper = await mount(
|
||||
<RenderHtml
|
||||
html={'<div style="background: green; padding: 10px;">Content green background</div>'}
|
||||
methods={methods}
|
||||
div={true}
|
||||
/>
|
||||
);
|
||||
await wrapper.instance().componentDidMount();
|
||||
await wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div><div style=\\"background: green; padding: 10px;\\">Content green background</div></div>"`
|
||||
);
|
||||
});
|
||||
|
||||
@ -116,7 +117,7 @@ test('Render html and style', async () => {
|
||||
await wrapper.instance().componentDidMount();
|
||||
await wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div class=\\"[{"display":"inline-block"},{"color":"red"}]\\"><div style=\\"background: green; padding: 10px;\\">Content green background</div></div>"`
|
||||
`"<span class=\\"{"color":"red"}\\"><div style=\\"background: green; padding: 10px;\\">Content green background</div></span>"`
|
||||
);
|
||||
});
|
||||
|
||||
@ -131,9 +132,7 @@ test('Render html iframe', async () => {
|
||||
);
|
||||
await wrapper.instance().componentDidMount();
|
||||
await wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div class=\\"[{"display":"inline-block"},null]\\"></div>"`
|
||||
);
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(`"<span></span>"`);
|
||||
});
|
||||
|
||||
test('Render bad html', async () => {
|
||||
@ -156,7 +155,7 @@ test('Render bad html', async () => {
|
||||
await wrapper.instance().componentDidMount();
|
||||
await wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(`
|
||||
"<div class=\\"[{"display":"inline-block"},null]\\">
|
||||
"<span>
|
||||
<h1>Link</h1><h1>
|
||||
<a href=\\"https://lowdefy.com\\">Lowdefy link</a>
|
||||
<font size=\\"+10\\">Description</font>
|
||||
@ -166,6 +165,6 @@ test('Render bad html', async () => {
|
||||
<img src=\\"x\\">
|
||||
<math><mi></mi></math>
|
||||
</div>
|
||||
</div>"
|
||||
</span>"
|
||||
`);
|
||||
});
|
||||
|
@ -83,3 +83,8 @@
|
||||
type: Button
|
||||
properties:
|
||||
title: '<div style="color: orange;">Title</div>'
|
||||
- id: 'with html in title'
|
||||
type: Button
|
||||
properties:
|
||||
icon: SaveOutlined
|
||||
title: '<div style="color: red;">Title</div>'
|
||||
|
@ -57,12 +57,12 @@ const ButtonBlock = ({ blockId, events, loading, methods, onClick, properties, r
|
||||
}
|
||||
onClick={onClick || (() => methods.triggerEvent({ name: onClickActionName }))}
|
||||
>
|
||||
<RenderHtml
|
||||
html={
|
||||
properties.hideTitle ? '' : type.isNone(properties.title) ? blockId : properties.title
|
||||
}
|
||||
methods={methods}
|
||||
/>
|
||||
{!properties.hideTitle && (
|
||||
<RenderHtml
|
||||
html={type.isNone(properties.title) ? blockId : properties.title}
|
||||
methods={methods}
|
||||
/>
|
||||
)}
|
||||
</Button>
|
||||
);
|
||||
};
|
||||
|
@ -41,9 +41,7 @@ exports[`Render default - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -78,16 +76,14 @@ exports[`Render properties.closable: true - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
<button
|
||||
className="ant-alert-close-icon"
|
||||
@ -148,16 +144,14 @@ exports[`Render properties.closeText: Close Text - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
<button
|
||||
className="ant-alert-close-icon"
|
||||
@ -204,16 +198,14 @@ exports[`Render properties.icon object - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -248,16 +240,14 @@ exports[`Render properties.icon string - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -292,16 +282,14 @@ exports[`Render properties.message - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -336,16 +324,14 @@ exports[`Render properties.type: error - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -380,16 +366,14 @@ exports[`Render properties.type: error banner: true - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -402,16 +386,14 @@ exports[`Render properties.type: error showIcon: false - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -446,16 +428,14 @@ exports[`Render properties.type: info - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -490,16 +470,14 @@ exports[`Render properties.type: info banner: true - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -512,16 +490,14 @@ exports[`Render properties.type: info showIcon: false - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -556,16 +532,14 @@ exports[`Render properties.type: success - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -600,16 +574,14 @@ exports[`Render properties.type: success banner: true - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -622,16 +594,14 @@ exports[`Render properties.type: success showIcon: false - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -666,16 +636,14 @@ exports[`Render properties.type: warning - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -710,16 +678,14 @@ exports[`Render properties.type: warning banner: true - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -732,16 +698,14 @@ exports[`Render properties.type: warning showIcon: false - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -779,8 +743,8 @@ exports[`Render with description only - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -797,8 +761,8 @@ exports[`Render with description only and icon false - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -834,15 +798,15 @@ exports[`Render with description properties.closable: true - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<button
|
||||
@ -904,15 +868,15 @@ exports[`Render with description properties.closeText: Close Text - value[0] 1`]
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<button
|
||||
@ -960,15 +924,15 @@ exports[`Render with description properties.icon object - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1004,15 +968,15 @@ exports[`Render with description properties.icon string - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1048,15 +1012,15 @@ exports[`Render with description properties.message - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1092,15 +1056,15 @@ exports[`Render with description properties.type: error - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1136,15 +1100,15 @@ exports[`Render with description properties.type: error banner: true - value[0]
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1158,15 +1122,15 @@ exports[`Render with description properties.type: error showIcon: false - value[
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1202,15 +1166,15 @@ exports[`Render with description properties.type: info - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1246,15 +1210,15 @@ exports[`Render with description properties.type: info banner: true - value[0] 1
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1268,15 +1232,15 @@ exports[`Render with description properties.type: info showIcon: false - value[0
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1312,15 +1276,15 @@ exports[`Render with description properties.type: success - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1356,15 +1320,15 @@ exports[`Render with description properties.type: success banner: true - value[0
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1378,15 +1342,15 @@ exports[`Render with description properties.type: success showIcon: false - valu
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1422,15 +1386,15 @@ exports[`Render with description properties.type: warning - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1466,15 +1430,15 @@ exports[`Render with description properties.type: warning banner: true - value[0
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1488,15 +1452,15 @@ exports[`Render with description properties.type: warning showIcon: false - valu
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1535,8 +1499,8 @@ exports[`Render with description uses html - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -1572,16 +1536,14 @@ exports[`Render with message uses html - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-alert-message"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
<span
|
||||
className="ant-alert-description"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -335,37 +335,7 @@ Array [
|
||||
Array [
|
||||
Object {
|
||||
"block": undefined,
|
||||
"children": <RenderHtml
|
||||
html=""
|
||||
methods={
|
||||
Object {
|
||||
"makeCssClass": [MockFunction] {
|
||||
"calls": Array [
|
||||
Array [
|
||||
Array [
|
||||
Object {
|
||||
"&:active": undefined,
|
||||
"&:hover": undefined,
|
||||
"backgroundColor": undefined,
|
||||
"borderColor": undefined,
|
||||
},
|
||||
undefined,
|
||||
],
|
||||
],
|
||||
],
|
||||
"results": Array [
|
||||
Object {
|
||||
"type": "return",
|
||||
"value": "{\\"style\\":[{},null]}",
|
||||
},
|
||||
],
|
||||
},
|
||||
"registerEvent": [Function],
|
||||
"registerMethod": [Function],
|
||||
"triggerEvent": [Function],
|
||||
}
|
||||
}
|
||||
/>,
|
||||
"children": false,
|
||||
"className": "{\\"style\\":[{},null]}",
|
||||
"danger": undefined,
|
||||
"disabled": undefined,
|
||||
@ -1221,3 +1191,84 @@ Array [
|
||||
],
|
||||
]
|
||||
`;
|
||||
|
||||
exports[`Mock render - with html in title - value[0] - default 2`] = `
|
||||
Array [
|
||||
Array [
|
||||
Object {
|
||||
"block": undefined,
|
||||
"children": <RenderHtml
|
||||
html=<div style="color: red;">
|
||||
Title
|
||||
</div>
|
||||
methods={
|
||||
Object {
|
||||
"makeCssClass": [MockFunction] {
|
||||
"calls": Array [
|
||||
Array [
|
||||
Array [
|
||||
Object {
|
||||
"&:active": undefined,
|
||||
"&:hover": undefined,
|
||||
"backgroundColor": undefined,
|
||||
"borderColor": undefined,
|
||||
},
|
||||
undefined,
|
||||
],
|
||||
],
|
||||
],
|
||||
"results": Array [
|
||||
Object {
|
||||
"type": "return",
|
||||
"value": "{\\"style\\":[{},null]}",
|
||||
},
|
||||
],
|
||||
},
|
||||
"registerEvent": [Function],
|
||||
"registerMethod": [Function],
|
||||
"triggerEvent": [Function],
|
||||
}
|
||||
}
|
||||
/>,
|
||||
"className": "{\\"style\\":[{},null]}",
|
||||
"danger": undefined,
|
||||
"disabled": undefined,
|
||||
"ghost": undefined,
|
||||
"href": undefined,
|
||||
"icon": <IconBlock
|
||||
basePath=""
|
||||
blockId="with html in title_icon"
|
||||
content={Object {}}
|
||||
events={Object {}}
|
||||
list={Array []}
|
||||
menus={Array []}
|
||||
methods={
|
||||
Object {
|
||||
"makeCssClass": [Function],
|
||||
"registerEvent": [Function],
|
||||
"registerMethod": [Function],
|
||||
"triggerEvent": [Function],
|
||||
}
|
||||
}
|
||||
properties="SaveOutlined"
|
||||
required={false}
|
||||
user={Object {}}
|
||||
validation={
|
||||
Object {
|
||||
"errors": Array [],
|
||||
"status": null,
|
||||
"warnings": Array [],
|
||||
}
|
||||
}
|
||||
/>,
|
||||
"id": "with html in title",
|
||||
"loading": undefined,
|
||||
"onClick": [Function],
|
||||
"shape": undefined,
|
||||
"size": undefined,
|
||||
"type": "primary",
|
||||
},
|
||||
Object {},
|
||||
],
|
||||
]
|
||||
`;
|
||||
|
@ -7,8 +7,8 @@ exports[`Render default - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -20,8 +20,8 @@ exports[`Render properties.block: true - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -33,8 +33,8 @@ exports[`Render properties.color: #9c27b0 - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -46,8 +46,8 @@ exports[`Render properties.danger: true - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -60,8 +60,8 @@ exports[`Render properties.disabled: true - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -73,15 +73,15 @@ exports[`Render properties.ghost: true - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
|
||||
exports[`Render properties.hideTitle: true - value[0] 1`] = `
|
||||
<button
|
||||
className="ant-btn {\\"style\\":[{},null]} ant-btn-primary"
|
||||
className="ant-btn {\\"style\\":[{},null]} ant-btn-primary ant-btn-icon-only"
|
||||
id="properties.hideTitle: true"
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
@ -108,9 +108,6 @@ exports[`Render properties.hideTitle: true - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
|
||||
@ -121,8 +118,8 @@ exports[`Render properties.href: www.lowdefy.com - value[0] 1`] = `
|
||||
id="properties.href: www.lowdefy.com"
|
||||
onClick={[Function]}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</a>
|
||||
`;
|
||||
@ -156,8 +153,8 @@ exports[`Render properties.icon object - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -191,8 +188,8 @@ exports[`Render properties.icon string - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -204,8 +201,8 @@ exports[`Render properties.shape: circle - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -217,8 +214,8 @@ exports[`Render properties.shape: round - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -230,8 +227,8 @@ exports[`Render properties.size: large - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -243,8 +240,8 @@ exports[`Render properties.size: small - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -256,8 +253,8 @@ exports[`Render properties.title - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -269,8 +266,8 @@ exports[`Render properties.type: danger - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -282,8 +279,8 @@ exports[`Render properties.type: dashed - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -295,8 +292,8 @@ exports[`Render properties.type: default - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -308,8 +305,8 @@ exports[`Render properties.type: link - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -321,8 +318,8 @@ exports[`Render properties.type: text - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -334,8 +331,43 @@ exports[`Render with html in title - value[0] 1`] = `
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
|
||||
exports[`Render with html in title - value[0] 2`] = `
|
||||
<button
|
||||
className="ant-btn {\\"style\\":[{},null]} ant-btn-primary"
|
||||
id="with html in title"
|
||||
onClick={[Function]}
|
||||
type="button"
|
||||
>
|
||||
<span
|
||||
aria-label="loading-3-quarters"
|
||||
basePath=""
|
||||
className="anticon anticon-loading-3-quarters anticon-spin {\\"style\\":[{},null]}"
|
||||
id="with html in title_icon"
|
||||
required={false}
|
||||
role="img"
|
||||
>
|
||||
<svg
|
||||
aria-hidden="true"
|
||||
data-icon="loading-3-quarters"
|
||||
fill="currentColor"
|
||||
focusable="false"
|
||||
height="1em"
|
||||
viewBox="0 0 1024 1024"
|
||||
width="1em"
|
||||
>
|
||||
<path
|
||||
d="M512 1024c-69.1 0-136.2-13.5-199.3-40.2C251.7 958 197 921 150 874c-47-47-84-101.7-109.8-162.7C13.5 648.2 0 581.1 0 512c0-19.9 16.1-36 36-36s36 16.1 36 36c0 59.4 11.6 117 34.6 171.3 22.2 52.4 53.9 99.5 94.3 139.9 40.4 40.4 87.5 72.2 139.9 94.3C395 940.4 452.6 952 512 952c59.4 0 117-11.6 171.3-34.6 52.4-22.2 99.5-53.9 139.9-94.3 40.4-40.4 72.2-87.5 94.3-139.9C940.4 629 952 571.4 952 512c0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.2C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3s-13.5 136.2-40.2 199.3C958 772.3 921 827 874 874c-47 47-101.8 83.9-162.7 109.7-63.1 26.8-130.2 40.3-199.3 40.3z"
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
`;
|
||||
@ -423,3 +455,7 @@ exports[`Test Schema properties.type: text 2`] = `null`;
|
||||
exports[`Test Schema with html in title 1`] = `true`;
|
||||
|
||||
exports[`Test Schema with html in title 2`] = `null`;
|
||||
|
||||
exports[`Test Schema with html in title 3`] = `true`;
|
||||
|
||||
exports[`Test Schema with html in title 4`] = `null`;
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -15,8 +15,8 @@ exports[`Render areas.extra: - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-card-head-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -91,8 +91,8 @@ exports[`Render properties.bodyStyle: border: 5px solid blue - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-card-head-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -130,8 +130,8 @@ exports[`Render properties.bordered: false - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-card-head-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -169,8 +169,8 @@ exports[`Render properties.headerStyle: border: 5px solid blue - value[0] 1`] =
|
||||
<div
|
||||
className="ant-card-head-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -208,8 +208,8 @@ exports[`Render properties.hoverable: true - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-card-head-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -247,8 +247,8 @@ exports[`Render properties.inner: true - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-card-head-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -286,8 +286,8 @@ exports[`Render properties.size: small - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-card-head-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -325,8 +325,8 @@ exports[`Render properties.title - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-card-head-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -364,8 +364,8 @@ exports[`Render with html in title - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-card-head-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -41,8 +41,8 @@ exports[`Render default - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -109,8 +109,8 @@ exports[`Render properties.accordion: true - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -163,8 +163,8 @@ exports[`Render properties.accordion: true - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -206,8 +206,8 @@ exports[`Render properties.activeKey: content_two - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -247,8 +247,8 @@ exports[`Render properties.activeKey: content_two - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -315,8 +315,8 @@ exports[`Render properties.bordered: false - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -369,8 +369,8 @@ exports[`Render properties.bordered: false - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -412,8 +412,8 @@ exports[`Render properties.defaultActiveKey: content_two - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -453,8 +453,8 @@ exports[`Render properties.defaultActiveKey: content_two - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -521,8 +521,8 @@ exports[`Render properties.destroyInactivePanel: true - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -575,8 +575,8 @@ exports[`Render properties.destroyInactivePanel: true - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -627,8 +627,8 @@ exports[`Render properties.expandIcon: ArrowRightOutlined - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -684,8 +684,8 @@ exports[`Render properties.expandIcon: ArrowRightOutlined - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -733,8 +733,8 @@ exports[`Render properties.expandIconPosition: right - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -787,8 +787,8 @@ exports[`Render properties.expandIconPosition: right - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -836,8 +836,8 @@ exports[`Render properties.forceRender: true - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -890,8 +890,8 @@ exports[`Render properties.forceRender: true - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -958,9 +958,7 @@ exports[`Render properties.panels - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-collapse-content ant-collapse-content-active"
|
||||
@ -1012,9 +1010,7 @@ exports[`Render properties.panels - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -1061,8 +1057,8 @@ exports[`Render properties.panels.disabled - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -1115,8 +1111,8 @@ exports[`Render properties.panels.disabled - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -1164,8 +1160,8 @@ exports[`Render properties.panels.extraKey - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
<div
|
||||
className="ant-collapse-extra"
|
||||
@ -1232,8 +1228,8 @@ exports[`Render properties.panels.extraKey - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
<div
|
||||
className="ant-collapse-extra"
|
||||
@ -1295,8 +1291,8 @@ exports[`Render properties.panels.title - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -1349,8 +1345,8 @@ exports[`Render properties.panels.title - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -1373,8 +1369,8 @@ exports[`Render properties.showArrow: false - value[0] 1`] = `
|
||||
role="button"
|
||||
tabIndex={0}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -1408,8 +1404,8 @@ exports[`Render properties.showArrow: false - value[0] 1`] = `
|
||||
role="button"
|
||||
tabIndex={0}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -1457,8 +1453,8 @@ exports[`Render with html in panel title - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -1500,8 +1496,8 @@ exports[`Render with html in panel title - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -53,8 +53,8 @@ exports[`Render default - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -115,8 +115,8 @@ exports[`Render properties.addItemButton: title: Add new Item - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -164,8 +164,8 @@ exports[`Render properties.addToFront: true - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -260,8 +260,8 @@ exports[`Render properties.noDataTitle: No title display - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -322,8 +322,8 @@ exports[`Render properties.removeItemIcon: DeleteOutlined - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -384,8 +384,8 @@ exports[`Render properties.removeItemIcon: name: DeleteOutlined - value[0] 1`] =
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -446,8 +446,8 @@ exports[`Render properties.size: large - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -508,8 +508,8 @@ exports[`Render properties.size: small - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -590,8 +590,8 @@ exports[`Render properties.title - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -652,8 +652,8 @@ exports[`Render required = true default - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -714,8 +714,8 @@ exports[`Render required = true properties.addItemButton: title: Add new Item -
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -763,8 +763,8 @@ exports[`Render required = true properties.addToFront: true - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -859,8 +859,8 @@ exports[`Render required = true properties.noDataTitle: No title display - value
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -921,8 +921,8 @@ exports[`Render required = true properties.removeItemIcon: DeleteOutlined - valu
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -983,8 +983,8 @@ exports[`Render required = true properties.removeItemIcon: name: DeleteOutlined
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1045,8 +1045,8 @@ exports[`Render required = true properties.size: large - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1107,8 +1107,8 @@ exports[`Render required = true properties.size: small - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1189,8 +1189,8 @@ exports[`Render required = true properties.title - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1251,8 +1251,8 @@ exports[`Render validation.status = error default - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1313,8 +1313,8 @@ exports[`Render validation.status = error properties.addItemButton: title: Add n
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1362,8 +1362,8 @@ exports[`Render validation.status = error properties.addToFront: true - value[0]
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1458,8 +1458,8 @@ exports[`Render validation.status = error properties.noDataTitle: No title displ
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1520,8 +1520,8 @@ exports[`Render validation.status = error properties.removeItemIcon: DeleteOutli
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1582,8 +1582,8 @@ exports[`Render validation.status = error properties.removeItemIcon: name: Delet
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1644,8 +1644,8 @@ exports[`Render validation.status = error properties.size: large - value[0] 1`]
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1706,8 +1706,8 @@ exports[`Render validation.status = error properties.size: small - value[0] 1`]
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1788,8 +1788,8 @@ exports[`Render validation.status = error properties.title - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1850,8 +1850,8 @@ exports[`Render validation.status = null default - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1912,8 +1912,8 @@ exports[`Render validation.status = null properties.addItemButton: title: Add ne
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -1961,8 +1961,8 @@ exports[`Render validation.status = null properties.addToFront: true - value[0]
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2057,8 +2057,8 @@ exports[`Render validation.status = null properties.noDataTitle: No title displa
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2119,8 +2119,8 @@ exports[`Render validation.status = null properties.removeItemIcon: DeleteOutlin
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2181,8 +2181,8 @@ exports[`Render validation.status = null properties.removeItemIcon: name: Delete
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2243,8 +2243,8 @@ exports[`Render validation.status = null properties.size: large - value[0] 1`] =
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2305,8 +2305,8 @@ exports[`Render validation.status = null properties.size: small - value[0] 1`] =
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2387,8 +2387,8 @@ exports[`Render validation.status = null properties.title - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2449,8 +2449,8 @@ exports[`Render validation.status = success default - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2511,8 +2511,8 @@ exports[`Render validation.status = success properties.addItemButton: title: Add
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2560,8 +2560,8 @@ exports[`Render validation.status = success properties.addToFront: true - value[
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2656,8 +2656,8 @@ exports[`Render validation.status = success properties.noDataTitle: No title dis
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2718,8 +2718,8 @@ exports[`Render validation.status = success properties.removeItemIcon: DeleteOut
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2780,8 +2780,8 @@ exports[`Render validation.status = success properties.removeItemIcon: name: Del
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2842,8 +2842,8 @@ exports[`Render validation.status = success properties.size: large - value[0] 1`
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2904,8 +2904,8 @@ exports[`Render validation.status = success properties.size: small - value[0] 1`
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -2986,8 +2986,8 @@ exports[`Render validation.status = success properties.title - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -3048,8 +3048,8 @@ exports[`Render validation.status = warning default - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -3110,8 +3110,8 @@ exports[`Render validation.status = warning properties.addItemButton: title: Add
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -3159,8 +3159,8 @@ exports[`Render validation.status = warning properties.addToFront: true - value[
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -3255,8 +3255,8 @@ exports[`Render validation.status = warning properties.noDataTitle: No title dis
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -3317,8 +3317,8 @@ exports[`Render validation.status = warning properties.removeItemIcon: DeleteOut
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -3379,8 +3379,8 @@ exports[`Render validation.status = warning properties.removeItemIcon: name: Del
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -3441,8 +3441,8 @@ exports[`Render validation.status = warning properties.size: large - value[0] 1`
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -3503,8 +3503,8 @@ exports[`Render validation.status = warning properties.size: small - value[0] 1`
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
@ -3585,8 +3585,8 @@ exports[`Render validation.status = warning properties.title - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -9,9 +9,7 @@ exports[`Render default - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-divider-inner-text"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -25,9 +23,7 @@ exports[`Render properties.dashed: true - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-divider-inner-text"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</span>
|
||||
</div>
|
||||
`;
|
||||
@ -41,8 +37,8 @@ exports[`Render properties.orientation: center - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-divider-inner-text"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -57,8 +53,8 @@ exports[`Render properties.orientation: left - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-divider-inner-text"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -73,8 +69,8 @@ exports[`Render properties.orientation: right - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-divider-inner-text"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -89,8 +85,8 @@ exports[`Render properties.title - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-divider-inner-text"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -105,8 +101,8 @@ exports[`Render properties.type: horizontal - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-divider-inner-text"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -121,8 +117,8 @@ exports[`Render properties.type: true - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-divider-inner-text"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -137,8 +133,8 @@ exports[`Render properties.type: vertical - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-divider-inner-text"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
@ -153,8 +149,8 @@ exports[`Render with html in title - value[0] 1`] = `
|
||||
<span
|
||||
className="ant-divider-inner-text"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</span>
|
||||
</div>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -32,9 +32,7 @@ exports[`Render backgroundColor: #016e1e - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -71,9 +69,7 @@ exports[`Render default - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -110,9 +106,7 @@ exports[`Render menus: default - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -149,9 +143,7 @@ exports[`Render menus: links[0] - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -188,9 +180,7 @@ exports[`Render menus: properties.menuId: menu_one - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -227,9 +217,7 @@ exports[`Render menusTitle pageId - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -266,9 +254,7 @@ exports[`Render menusTitle properties.title - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -305,9 +291,7 @@ exports[`Render menusTitle url - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -344,9 +328,7 @@ exports[`Render properties.MenuGroup with MenuLInks - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -383,9 +365,7 @@ exports[`Render properties.danger: true - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -422,9 +402,7 @@ exports[`Render properties.icon - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -461,9 +439,7 @@ exports[`Render properties.links - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -500,9 +476,7 @@ exports[`Render properties.subMenuCloseDelay: 3 - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -539,9 +513,7 @@ exports[`Render properties.subMenuOpenDelay: 3 - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -578,9 +550,7 @@ exports[`Render properties.title - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -617,9 +587,7 @@ exports[`Render selectedColor: #f16e1e - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -656,9 +624,7 @@ exports[`Render selectedColor: #f16e1e, backgroundColor: #016e1e - value[0] 1`]
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -695,9 +661,7 @@ exports[`Render theme: light - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -734,9 +698,7 @@ exports[`Render theme: light, selectedColor: #6C2ACB - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
@ -773,9 +735,7 @@ exports[`Render theme: light, selectedColor: #f16e1e, backgroundColor: #016e1e -
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -46,9 +46,7 @@ exports[`Render default - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -151,9 +149,7 @@ exports[`Render default - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -229,9 +225,7 @@ exports[`Render properties.breadcrumb.list - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -334,9 +328,7 @@ exports[`Render properties.breadcrumb.list - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -446,9 +438,7 @@ exports[`Render properties.content.style - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -551,9 +541,7 @@ exports[`Render properties.content.style - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -629,9 +617,7 @@ exports[`Render properties.footer.style - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -734,9 +720,7 @@ exports[`Render properties.footer.style - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -827,9 +811,7 @@ exports[`Render properties.header.color - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -1021,9 +1003,7 @@ exports[`Render properties.header.color - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -1109,9 +1089,7 @@ exports[`Render properties.header.style - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -1214,9 +1192,7 @@ exports[`Render properties.header.style - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -1292,9 +1268,7 @@ exports[`Render properties.header.theme: light - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -1486,9 +1460,7 @@ exports[`Render properties.header.theme: light - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -1564,9 +1536,7 @@ exports[`Render properties.logo.alt - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -1758,9 +1728,7 @@ exports[`Render properties.logo.alt - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -1836,9 +1804,7 @@ exports[`Render properties.logo.size - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -2030,9 +1996,7 @@ exports[`Render properties.logo.size - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -2108,9 +2072,7 @@ exports[`Render properties.logo.src - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -2302,9 +2264,7 @@ exports[`Render properties.logo.src - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -2380,9 +2340,7 @@ exports[`Render properties.logo.srcSet - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -2574,9 +2532,7 @@ exports[`Render properties.logo.srcSet - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -2652,9 +2608,7 @@ exports[`Render properties.logo.style - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -2757,9 +2711,7 @@ exports[`Render properties.logo.style - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -2835,9 +2787,7 @@ exports[`Render properties.menu - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -3029,9 +2979,7 @@ exports[`Render properties.menu - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -3107,9 +3055,7 @@ exports[`Render properties.menu.selectedColor - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -3301,9 +3247,7 @@ exports[`Render properties.menu.selectedColor - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -3379,9 +3323,7 @@ exports[`Render properties.sider.color - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -3573,9 +3515,7 @@ exports[`Render properties.sider.color - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -3651,9 +3591,7 @@ exports[`Render properties.sider.initialCollapsed - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -3767,9 +3705,7 @@ exports[`Render properties.sider.initialCollapsed - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -3845,9 +3781,7 @@ exports[`Render properties.sider.style - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -3961,9 +3895,7 @@ exports[`Render properties.sider.style - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -4039,9 +3971,7 @@ exports[`Render properties.sider.theme: dark - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -4144,9 +4074,7 @@ exports[`Render properties.sider.theme: dark - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -4222,9 +4150,7 @@ exports[`Render properties.style - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -4327,9 +4253,7 @@ exports[`Render properties.style - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -4405,9 +4329,7 @@ exports[`Render properties.toggleSiderButton.hide - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -4521,9 +4443,7 @@ exports[`Render properties.toggleSiderButton.hide - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -4599,9 +4519,7 @@ exports[`Render properties.toggleSiderButton.type - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
@ -4715,9 +4633,7 @@ exports[`Render properties.toggleSiderButton.type - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -10,9 +10,7 @@ exports[`Render default - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
`;
|
||||
|
||||
@ -27,8 +25,8 @@ exports[`Render properties.code: true - value[0] 1`] = `
|
||||
}
|
||||
>
|
||||
<code>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</code>
|
||||
</div>
|
||||
@ -44,8 +42,8 @@ exports[`Render properties.content - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
`;
|
||||
@ -60,8 +58,8 @@ exports[`Render properties.content short - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
`;
|
||||
@ -76,8 +74,8 @@ exports[`Render properties.copyable: icon - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
<div
|
||||
aria-label="Copy"
|
||||
@ -135,8 +133,8 @@ exports[`Render properties.copyable: icon: [] - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
<div
|
||||
aria-label="Copy"
|
||||
@ -216,8 +214,8 @@ exports[`Render properties.copyable: text: one - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
<div
|
||||
aria-label="Copy"
|
||||
@ -272,8 +270,8 @@ exports[`Render properties.copyable: tooltips: [] - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
<div
|
||||
aria-label="Click to copy"
|
||||
@ -328,8 +326,8 @@ exports[`Render properties.copyable: true - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
<div
|
||||
aria-label="Copy"
|
||||
@ -385,8 +383,8 @@ exports[`Render properties.delete: true - value[0] 1`] = `
|
||||
}
|
||||
>
|
||||
<del>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</del>
|
||||
</div>
|
||||
@ -402,8 +400,8 @@ exports[`Render properties.disabled: true - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
`;
|
||||
@ -418,8 +416,8 @@ exports[`Render properties.ellipsis: expandable, rows - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
`;
|
||||
@ -434,8 +432,8 @@ exports[`Render properties.ellipsis: rows - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
`;
|
||||
@ -450,8 +448,8 @@ exports[`Render properties.ellipsis: rows, suffix - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
and other
|
||||
</div>
|
||||
@ -467,8 +465,8 @@ exports[`Render properties.ellipsis: true - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
`;
|
||||
@ -484,8 +482,8 @@ exports[`Render properties.mark: true - value[0] 1`] = `
|
||||
}
|
||||
>
|
||||
<mark>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</mark>
|
||||
</div>
|
||||
@ -502,8 +500,8 @@ exports[`Render properties.strong: true - value[0] 1`] = `
|
||||
}
|
||||
>
|
||||
<strong>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</strong>
|
||||
</div>
|
||||
@ -519,8 +517,8 @@ exports[`Render properties.type: danger - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
`;
|
||||
@ -535,8 +533,8 @@ exports[`Render properties.type: secondary - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
`;
|
||||
@ -551,8 +549,8 @@ exports[`Render properties.type: warning - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
`;
|
||||
@ -568,8 +566,8 @@ exports[`Render properties.underline: true - value[0] 1`] = `
|
||||
}
|
||||
>
|
||||
<u>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</u>
|
||||
</div>
|
||||
@ -585,8 +583,8 @@ exports[`Render with html content - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
`;
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -30,16 +30,12 @@ exports[`Render areas.extra - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-extra"
|
||||
@ -102,16 +98,12 @@ exports[`Render default - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-content"
|
||||
@ -163,16 +155,12 @@ exports[`Render properties. icon: ApiFilled - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-content"
|
||||
@ -482,16 +470,12 @@ exports[`Render properties. status: 403 - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-content"
|
||||
@ -819,16 +803,12 @@ exports[`Render properties. status: 404 - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-content"
|
||||
@ -1203,16 +1183,12 @@ exports[`Render properties. status: 500 - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-content"
|
||||
@ -1261,16 +1237,12 @@ exports[`Render properties. status: error - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-content"
|
||||
@ -1319,16 +1291,12 @@ exports[`Render properties. status: info - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-content"
|
||||
@ -1377,16 +1345,12 @@ exports[`Render properties. status: success default is info - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-content"
|
||||
@ -1435,16 +1399,12 @@ exports[`Render properties. status: warning - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-content"
|
||||
@ -1493,15 +1453,13 @@ exports[`Render properties.subTitle: subTitle text - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -1551,16 +1509,14 @@ exports[`Render properties.title - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-content"
|
||||
@ -1609,15 +1565,13 @@ exports[`Render with properties.subTitle in html - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -1667,16 +1621,14 @@ exports[`Render with properties.title in html - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-result-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-subtitle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-result-content"
|
||||
|
@ -59,8 +59,8 @@ exports[`Render default - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</span>
|
||||
@ -130,8 +130,8 @@ exports[`Render properties.accept - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</span>
|
||||
@ -201,8 +201,8 @@ exports[`Render properties.button - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</span>
|
||||
@ -267,8 +267,8 @@ exports[`Render properties.disabled - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</span>
|
||||
@ -338,8 +338,8 @@ exports[`Render properties.showUploadList - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</span>
|
||||
@ -409,8 +409,8 @@ exports[`Render properties.singleFile - value[0] 1`] = `
|
||||
/>
|
||||
</svg>
|
||||
</span>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</button>
|
||||
</span>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -7,9 +7,7 @@ exports[`Render default - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-statistic-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-statistic-content"
|
||||
@ -38,9 +36,7 @@ exports[`Render properties.decimalSeparator: ',' - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-statistic-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-statistic-content"
|
||||
@ -73,9 +69,7 @@ exports[`Render properties.groupSeparator: ',' - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-statistic-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-statistic-content"
|
||||
@ -108,9 +102,7 @@ exports[`Render properties.precision: 2 - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-statistic-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-statistic-content"
|
||||
@ -143,9 +135,7 @@ exports[`Render properties.prefix: R - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-statistic-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-statistic-content"
|
||||
@ -182,9 +172,7 @@ exports[`Render properties.prefixIcon: AccountBookFilled - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-statistic-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-statistic-content"
|
||||
@ -242,9 +230,7 @@ exports[`Render properties.suffix: Rand - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-statistic-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-statistic-content"
|
||||
@ -281,9 +267,7 @@ exports[`Render properties.suffixIcon: AccountBookFilled - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-statistic-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-statistic-content"
|
||||
@ -341,8 +325,8 @@ exports[`Render properties.title - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-statistic-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -372,8 +356,8 @@ exports[`Render properties.title with html - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-statistic-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
@ -407,9 +391,7 @@ exports[`Render properties.value: '3.45' as string - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-statistic-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-statistic-content"
|
||||
@ -442,9 +424,7 @@ exports[`Render properties.value: 3.45 as number - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-statistic-title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</div>
|
||||
<div
|
||||
className="ant-statistic-content"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -15,8 +15,8 @@ exports[`Render default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -59,8 +59,8 @@ exports[`Render properties.allowClear: false - value[0] 1`] = `
|
||||
htmlFor="properties.allowClear: false_input"
|
||||
title="properties.allowClear: false"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -103,8 +103,8 @@ exports[`Render properties.autoFocus: true - value[0] 1`] = `
|
||||
htmlFor="properties.autoFocus: true_input"
|
||||
title="properties.autoFocus: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -148,8 +148,8 @@ exports[`Render properties.autoSize: true - value[0] 1`] = `
|
||||
htmlFor="properties.autoSize: true_input"
|
||||
title="properties.autoSize: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -192,8 +192,8 @@ exports[`Render properties.disabled: true - value[0] 1`] = `
|
||||
htmlFor="properties.disabled: true_input"
|
||||
title="properties.disabled: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -237,8 +237,8 @@ exports[`Render properties.label align: right - value[0] 1`] = `
|
||||
htmlFor="properties.label align: right_input"
|
||||
title="properties.label align: right"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -281,8 +281,8 @@ exports[`Render properties.label colon: false - value[0] 1`] = `
|
||||
htmlFor="properties.label colon: false_input"
|
||||
title="properties.label colon: false"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -355,8 +355,8 @@ exports[`Render properties.label extra: showing extra - value[0] 1`] = `
|
||||
htmlFor="properties.label extra: showing extra_input"
|
||||
title="properties.label extra: showing extra"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -383,8 +383,8 @@ exports[`Render properties.label extra: showing extra - value[0] 1`] = `
|
||||
<div
|
||||
className="ant-form-item-explain ant-form-item-extra {\\"style\\":[{\\"marginTop\\":0},null]}"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -410,8 +410,8 @@ exports[`Render properties.label inline: true - value[0] 1`] = `
|
||||
htmlFor="properties.label inline: true_input"
|
||||
title="properties.label inline: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -458,8 +458,8 @@ exports[`Render properties.label span: 12 - value[0] 1`] = `
|
||||
htmlFor="properties.label span: 12_input"
|
||||
title="properties.label span: 12"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -502,8 +502,8 @@ exports[`Render properties.minRows: 2 maxRows: 6 - value[0] 1`] = `
|
||||
htmlFor="properties.minRows: 2 maxRows: 6_input"
|
||||
title="properties.minRows: 2 maxRows: 6"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -546,8 +546,8 @@ exports[`Render properties.placeholder: Type your text here - value[0] 1`] = `
|
||||
htmlFor="properties.placeholder: Type your text here_input"
|
||||
title="properties.placeholder: Type your text here"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -591,8 +591,8 @@ exports[`Render properties.rows: 5 - value[0] 1`] = `
|
||||
htmlFor="properties.rows: 5_input"
|
||||
title="properties.rows: 5"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -635,8 +635,8 @@ exports[`Render properties.title: My TextArea Title - value[0] 1`] = `
|
||||
htmlFor="properties.title: My TextArea Title_input"
|
||||
title="My TextArea Title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -679,8 +679,8 @@ exports[`Render required = true default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -723,8 +723,8 @@ exports[`Render required = true properties.allowClear: false - value[0] 1`] = `
|
||||
htmlFor="properties.allowClear: false_input"
|
||||
title="properties.allowClear: false"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -767,8 +767,8 @@ exports[`Render required = true properties.autoFocus: true - value[0] 1`] = `
|
||||
htmlFor="properties.autoFocus: true_input"
|
||||
title="properties.autoFocus: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -812,8 +812,8 @@ exports[`Render required = true properties.autoSize: true - value[0] 1`] = `
|
||||
htmlFor="properties.autoSize: true_input"
|
||||
title="properties.autoSize: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -856,8 +856,8 @@ exports[`Render required = true properties.disabled: true - value[0] 1`] = `
|
||||
htmlFor="properties.disabled: true_input"
|
||||
title="properties.disabled: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -901,8 +901,8 @@ exports[`Render required = true properties.label align: right - value[0] 1`] = `
|
||||
htmlFor="properties.label align: right_input"
|
||||
title="properties.label align: right"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -945,8 +945,8 @@ exports[`Render required = true properties.label colon: false - value[0] 1`] = `
|
||||
htmlFor="properties.label colon: false_input"
|
||||
title="properties.label colon: false"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1019,8 +1019,8 @@ exports[`Render required = true properties.label extra: showing extra - value[0]
|
||||
htmlFor="properties.label extra: showing extra_input"
|
||||
title="properties.label extra: showing extra"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1047,8 +1047,8 @@ exports[`Render required = true properties.label extra: showing extra - value[0]
|
||||
<div
|
||||
className="ant-form-item-explain ant-form-item-extra {\\"style\\":[{\\"marginTop\\":0},null]}"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -1074,8 +1074,8 @@ exports[`Render required = true properties.label inline: true - value[0] 1`] = `
|
||||
htmlFor="properties.label inline: true_input"
|
||||
title="properties.label inline: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1122,8 +1122,8 @@ exports[`Render required = true properties.label span: 12 - value[0] 1`] = `
|
||||
htmlFor="properties.label span: 12_input"
|
||||
title="properties.label span: 12"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1166,8 +1166,8 @@ exports[`Render required = true properties.minRows: 2 maxRows: 6 - value[0] 1`]
|
||||
htmlFor="properties.minRows: 2 maxRows: 6_input"
|
||||
title="properties.minRows: 2 maxRows: 6"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1210,8 +1210,8 @@ exports[`Render required = true properties.placeholder: Type your text here - va
|
||||
htmlFor="properties.placeholder: Type your text here_input"
|
||||
title="properties.placeholder: Type your text here"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1255,8 +1255,8 @@ exports[`Render required = true properties.rows: 5 - value[0] 1`] = `
|
||||
htmlFor="properties.rows: 5_input"
|
||||
title="properties.rows: 5"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1299,8 +1299,8 @@ exports[`Render required = true properties.title: My TextArea Title - value[0] 1
|
||||
htmlFor="properties.title: My TextArea Title_input"
|
||||
title="My TextArea Title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1343,8 +1343,8 @@ exports[`Render validation.status = error default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1415,8 +1415,8 @@ exports[`Render validation.status = error properties.allowClear: false - value[0
|
||||
htmlFor="properties.allowClear: false_input"
|
||||
title="properties.allowClear: false"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1487,8 +1487,8 @@ exports[`Render validation.status = error properties.autoFocus: true - value[0]
|
||||
htmlFor="properties.autoFocus: true_input"
|
||||
title="properties.autoFocus: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1560,8 +1560,8 @@ exports[`Render validation.status = error properties.autoSize: true - value[0] 1
|
||||
htmlFor="properties.autoSize: true_input"
|
||||
title="properties.autoSize: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1632,8 +1632,8 @@ exports[`Render validation.status = error properties.disabled: true - value[0] 1
|
||||
htmlFor="properties.disabled: true_input"
|
||||
title="properties.disabled: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1705,8 +1705,8 @@ exports[`Render validation.status = error properties.label align: right - value[
|
||||
htmlFor="properties.label align: right_input"
|
||||
title="properties.label align: right"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1777,8 +1777,8 @@ exports[`Render validation.status = error properties.label colon: false - value[
|
||||
htmlFor="properties.label colon: false_input"
|
||||
title="properties.label colon: false"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1907,8 +1907,8 @@ exports[`Render validation.status = error properties.label extra: showing extra
|
||||
htmlFor="properties.label extra: showing extra_input"
|
||||
title="properties.label extra: showing extra"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1983,8 +1983,8 @@ exports[`Render validation.status = error properties.label inline: true - value[
|
||||
htmlFor="properties.label inline: true_input"
|
||||
title="properties.label inline: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2059,8 +2059,8 @@ exports[`Render validation.status = error properties.label span: 12 - value[0] 1
|
||||
htmlFor="properties.label span: 12_input"
|
||||
title="properties.label span: 12"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2131,8 +2131,8 @@ exports[`Render validation.status = error properties.minRows: 2 maxRows: 6 - va
|
||||
htmlFor="properties.minRows: 2 maxRows: 6_input"
|
||||
title="properties.minRows: 2 maxRows: 6"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2203,8 +2203,8 @@ exports[`Render validation.status = error properties.placeholder: Type your text
|
||||
htmlFor="properties.placeholder: Type your text here_input"
|
||||
title="properties.placeholder: Type your text here"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2276,8 +2276,8 @@ exports[`Render validation.status = error properties.rows: 5 - value[0] 1`] = `
|
||||
htmlFor="properties.rows: 5_input"
|
||||
title="properties.rows: 5"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2348,8 +2348,8 @@ exports[`Render validation.status = error properties.title: My TextArea Title -
|
||||
htmlFor="properties.title: My TextArea Title_input"
|
||||
title="My TextArea Title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2420,8 +2420,8 @@ exports[`Render validation.status = null default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2464,8 +2464,8 @@ exports[`Render validation.status = null properties.allowClear: false - value[0]
|
||||
htmlFor="properties.allowClear: false_input"
|
||||
title="properties.allowClear: false"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2508,8 +2508,8 @@ exports[`Render validation.status = null properties.autoFocus: true - value[0] 1
|
||||
htmlFor="properties.autoFocus: true_input"
|
||||
title="properties.autoFocus: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2553,8 +2553,8 @@ exports[`Render validation.status = null properties.autoSize: true - value[0] 1`
|
||||
htmlFor="properties.autoSize: true_input"
|
||||
title="properties.autoSize: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2597,8 +2597,8 @@ exports[`Render validation.status = null properties.disabled: true - value[0] 1`
|
||||
htmlFor="properties.disabled: true_input"
|
||||
title="properties.disabled: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2642,8 +2642,8 @@ exports[`Render validation.status = null properties.label align: right - value[0
|
||||
htmlFor="properties.label align: right_input"
|
||||
title="properties.label align: right"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2686,8 +2686,8 @@ exports[`Render validation.status = null properties.label colon: false - value[0
|
||||
htmlFor="properties.label colon: false_input"
|
||||
title="properties.label colon: false"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2760,8 +2760,8 @@ exports[`Render validation.status = null properties.label extra: showing extra -
|
||||
htmlFor="properties.label extra: showing extra_input"
|
||||
title="properties.label extra: showing extra"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2788,8 +2788,8 @@ exports[`Render validation.status = null properties.label extra: showing extra -
|
||||
<div
|
||||
className="ant-form-item-explain ant-form-item-extra {\\"style\\":[{\\"marginTop\\":0},null]}"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -2815,8 +2815,8 @@ exports[`Render validation.status = null properties.label inline: true - value[0
|
||||
htmlFor="properties.label inline: true_input"
|
||||
title="properties.label inline: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2863,8 +2863,8 @@ exports[`Render validation.status = null properties.label span: 12 - value[0] 1`
|
||||
htmlFor="properties.label span: 12_input"
|
||||
title="properties.label span: 12"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2907,8 +2907,8 @@ exports[`Render validation.status = null properties.minRows: 2 maxRows: 6 - val
|
||||
htmlFor="properties.minRows: 2 maxRows: 6_input"
|
||||
title="properties.minRows: 2 maxRows: 6"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2951,8 +2951,8 @@ exports[`Render validation.status = null properties.placeholder: Type your text
|
||||
htmlFor="properties.placeholder: Type your text here_input"
|
||||
title="properties.placeholder: Type your text here"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2996,8 +2996,8 @@ exports[`Render validation.status = null properties.rows: 5 - value[0] 1`] = `
|
||||
htmlFor="properties.rows: 5_input"
|
||||
title="properties.rows: 5"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3040,8 +3040,8 @@ exports[`Render validation.status = null properties.title: My TextArea Title - v
|
||||
htmlFor="properties.title: My TextArea Title_input"
|
||||
title="My TextArea Title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3084,8 +3084,8 @@ exports[`Render validation.status = success default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3151,8 +3151,8 @@ exports[`Render validation.status = success properties.allowClear: false - value
|
||||
htmlFor="properties.allowClear: false_input"
|
||||
title="properties.allowClear: false"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3218,8 +3218,8 @@ exports[`Render validation.status = success properties.autoFocus: true - value[0
|
||||
htmlFor="properties.autoFocus: true_input"
|
||||
title="properties.autoFocus: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3286,8 +3286,8 @@ exports[`Render validation.status = success properties.autoSize: true - value[0]
|
||||
htmlFor="properties.autoSize: true_input"
|
||||
title="properties.autoSize: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3353,8 +3353,8 @@ exports[`Render validation.status = success properties.disabled: true - value[0]
|
||||
htmlFor="properties.disabled: true_input"
|
||||
title="properties.disabled: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3421,8 +3421,8 @@ exports[`Render validation.status = success properties.label align: right - valu
|
||||
htmlFor="properties.label align: right_input"
|
||||
title="properties.label align: right"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3488,8 +3488,8 @@ exports[`Render validation.status = success properties.label colon: false - valu
|
||||
htmlFor="properties.label colon: false_input"
|
||||
title="properties.label colon: false"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3608,8 +3608,8 @@ exports[`Render validation.status = success properties.label extra: showing extr
|
||||
htmlFor="properties.label extra: showing extra_input"
|
||||
title="properties.label extra: showing extra"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3659,8 +3659,8 @@ exports[`Render validation.status = success properties.label extra: showing extr
|
||||
<div
|
||||
className="ant-form-item-explain ant-form-item-extra {\\"style\\":[{\\"marginTop\\":0},null]}"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@ -3686,8 +3686,8 @@ exports[`Render validation.status = success properties.label inline: true - valu
|
||||
htmlFor="properties.label inline: true_input"
|
||||
title="properties.label inline: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3757,8 +3757,8 @@ exports[`Render validation.status = success properties.label span: 12 - value[0]
|
||||
htmlFor="properties.label span: 12_input"
|
||||
title="properties.label span: 12"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3824,8 +3824,8 @@ exports[`Render validation.status = success properties.minRows: 2 maxRows: 6 -
|
||||
htmlFor="properties.minRows: 2 maxRows: 6_input"
|
||||
title="properties.minRows: 2 maxRows: 6"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3891,8 +3891,8 @@ exports[`Render validation.status = success properties.placeholder: Type your te
|
||||
htmlFor="properties.placeholder: Type your text here_input"
|
||||
title="properties.placeholder: Type your text here"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3959,8 +3959,8 @@ exports[`Render validation.status = success properties.rows: 5 - value[0] 1`] =
|
||||
htmlFor="properties.rows: 5_input"
|
||||
title="properties.rows: 5"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4026,8 +4026,8 @@ exports[`Render validation.status = success properties.title: My TextArea Title
|
||||
htmlFor="properties.title: My TextArea Title_input"
|
||||
title="My TextArea Title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4093,8 +4093,8 @@ exports[`Render validation.status = warning default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4165,8 +4165,8 @@ exports[`Render validation.status = warning properties.allowClear: false - value
|
||||
htmlFor="properties.allowClear: false_input"
|
||||
title="properties.allowClear: false"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4237,8 +4237,8 @@ exports[`Render validation.status = warning properties.autoFocus: true - value[0
|
||||
htmlFor="properties.autoFocus: true_input"
|
||||
title="properties.autoFocus: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4310,8 +4310,8 @@ exports[`Render validation.status = warning properties.autoSize: true - value[0]
|
||||
htmlFor="properties.autoSize: true_input"
|
||||
title="properties.autoSize: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4382,8 +4382,8 @@ exports[`Render validation.status = warning properties.disabled: true - value[0]
|
||||
htmlFor="properties.disabled: true_input"
|
||||
title="properties.disabled: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4455,8 +4455,8 @@ exports[`Render validation.status = warning properties.label align: right - valu
|
||||
htmlFor="properties.label align: right_input"
|
||||
title="properties.label align: right"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4527,8 +4527,8 @@ exports[`Render validation.status = warning properties.label colon: false - valu
|
||||
htmlFor="properties.label colon: false_input"
|
||||
title="properties.label colon: false"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4657,8 +4657,8 @@ exports[`Render validation.status = warning properties.label extra: showing extr
|
||||
htmlFor="properties.label extra: showing extra_input"
|
||||
title="properties.label extra: showing extra"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4733,8 +4733,8 @@ exports[`Render validation.status = warning properties.label inline: true - valu
|
||||
htmlFor="properties.label inline: true_input"
|
||||
title="properties.label inline: true"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4809,8 +4809,8 @@ exports[`Render validation.status = warning properties.label span: 12 - value[0]
|
||||
htmlFor="properties.label span: 12_input"
|
||||
title="properties.label span: 12"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4881,8 +4881,8 @@ exports[`Render validation.status = warning properties.minRows: 2 maxRows: 6 -
|
||||
htmlFor="properties.minRows: 2 maxRows: 6_input"
|
||||
title="properties.minRows: 2 maxRows: 6"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4953,8 +4953,8 @@ exports[`Render validation.status = warning properties.placeholder: Type your te
|
||||
htmlFor="properties.placeholder: Type your text here_input"
|
||||
title="properties.placeholder: Type your text here"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -5026,8 +5026,8 @@ exports[`Render validation.status = warning properties.rows: 5 - value[0] 1`] =
|
||||
htmlFor="properties.rows: 5_input"
|
||||
title="properties.rows: 5"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -5098,8 +5098,8 @@ exports[`Render validation.status = warning properties.title: My TextArea Title
|
||||
htmlFor="properties.title: My TextArea Title_input"
|
||||
title="My TextArea Title"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -10,9 +10,7 @@ exports[`Render default - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
/>
|
||||
|
||||
</h1>
|
||||
`;
|
||||
|
||||
@ -27,8 +25,8 @@ exports[`Render properties. code: true - value[0] 1`] = `
|
||||
}
|
||||
>
|
||||
<code>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</code>
|
||||
</h1>
|
||||
@ -44,8 +42,8 @@ exports[`Render properties.color: - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h1>
|
||||
`;
|
||||
@ -60,8 +58,8 @@ exports[`Render properties.content with html - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h1>
|
||||
`;
|
||||
@ -76,8 +74,8 @@ exports[`Render properties.copyable: icon - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
<div
|
||||
aria-label="Copy"
|
||||
@ -135,8 +133,8 @@ exports[`Render properties.copyable: icon: [] - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
<div
|
||||
aria-label="Copy"
|
||||
@ -216,8 +214,8 @@ exports[`Render properties.copyable: text: one - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
<div
|
||||
aria-label="Copy"
|
||||
@ -272,8 +270,8 @@ exports[`Render properties.copyable: tooltips: [] - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
<div
|
||||
aria-label="Click to copy"
|
||||
@ -328,8 +326,8 @@ exports[`Render properties.copyable: true - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
<div
|
||||
aria-label="Copy"
|
||||
@ -385,8 +383,8 @@ exports[`Render properties.delete: true - value[0] 1`] = `
|
||||
}
|
||||
>
|
||||
<del>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</del>
|
||||
</h1>
|
||||
@ -402,8 +400,8 @@ exports[`Render properties.disabled: true - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h1>
|
||||
`;
|
||||
@ -418,8 +416,8 @@ exports[`Render properties.ellipsis: expandable, rows - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h1>
|
||||
`;
|
||||
@ -434,8 +432,8 @@ exports[`Render properties.ellipsis: rows - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h1>
|
||||
`;
|
||||
@ -450,8 +448,8 @@ exports[`Render properties.ellipsis: rows, suffix - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
and other
|
||||
</h1>
|
||||
@ -467,8 +465,8 @@ exports[`Render properties.ellipsis: true - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h1>
|
||||
`;
|
||||
@ -483,8 +481,8 @@ exports[`Render properties.level: 2 - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h2>
|
||||
`;
|
||||
@ -499,8 +497,8 @@ exports[`Render properties.level: 3 - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h3>
|
||||
`;
|
||||
@ -515,8 +513,8 @@ exports[`Render properties.level: 4 - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h4>
|
||||
`;
|
||||
@ -532,8 +530,8 @@ exports[`Render properties.mark: true - value[0] 1`] = `
|
||||
}
|
||||
>
|
||||
<mark>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</mark>
|
||||
</h1>
|
||||
@ -549,8 +547,8 @@ exports[`Render properties.title - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h1>
|
||||
`;
|
||||
@ -565,8 +563,8 @@ exports[`Render properties.type: danger - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h1>
|
||||
`;
|
||||
@ -581,8 +579,8 @@ exports[`Render properties.type: secondary - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h1>
|
||||
`;
|
||||
@ -597,8 +595,8 @@ exports[`Render properties.type: warning - value[0] 1`] = `
|
||||
}
|
||||
}
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</h1>
|
||||
`;
|
||||
@ -614,8 +612,8 @@ exports[`Render properties.underline: true - value[0] 1`] = `
|
||||
}
|
||||
>
|
||||
<u>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</u>
|
||||
</h1>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -18,7 +18,13 @@ import React from 'react';
|
||||
import { blockDefaultProps, RenderHtml } from '@lowdefy/block-tools';
|
||||
|
||||
const HtmlBlock = ({ blockId, properties, methods }) => (
|
||||
<RenderHtml id={blockId} html={properties.html} methods={methods} style={properties.style} />
|
||||
<RenderHtml
|
||||
div={true}
|
||||
html={properties.html}
|
||||
id={blockId}
|
||||
methods={methods}
|
||||
style={properties.style}
|
||||
/>
|
||||
);
|
||||
|
||||
HtmlBlock.defaultProps = blockDefaultProps;
|
||||
|
@ -57,11 +57,11 @@ test('update on properties.html change', () => {
|
||||
);
|
||||
const wrapper = mount(<Shell properties={config.properties} />);
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div id=\\"update\\" data-testid=\\"update\\" class=\\"{"style":[{"display":"inline-block"},null]}\\"><div>one</div></div>"`
|
||||
`"<div id=\\"update\\" data-testid=\\"update\\" class=\\"{}\\"><div>one</div></div>"`
|
||||
);
|
||||
wrapper.setProps({ properties: { html: '<div>two</div>' } });
|
||||
wrapper.update();
|
||||
expect(wrapper.html()).toMatchInlineSnapshot(
|
||||
`"<div id=\\"update\\" data-testid=\\"update\\" class=\\"{"style":[{"display":"inline-block"},null]}\\"><div>two</div></div>"`
|
||||
`"<div id=\\"update\\" data-testid=\\"update\\" class=\\"{}\\"><div>two</div></div>"`
|
||||
);
|
||||
});
|
||||
|
@ -1,16 +1,10 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Render default - value[0] 1`] = `
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
data-testid="default"
|
||||
id="default"
|
||||
/>
|
||||
`;
|
||||
exports[`Render default - value[0] 1`] = `""`;
|
||||
|
||||
exports[`Render properties.html - value[0] 1`] = `
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
className="{}"
|
||||
data-testid="properties.html"
|
||||
id="properties.html"
|
||||
/>
|
||||
@ -18,7 +12,7 @@ exports[`Render properties.html - value[0] 1`] = `
|
||||
|
||||
exports[`Render properties.html-bad-code - value[0] 1`] = `
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
className="{}"
|
||||
data-testid="properties.html-bad-code"
|
||||
id="properties.html-bad-code"
|
||||
/>
|
||||
@ -26,7 +20,7 @@ exports[`Render properties.html-bad-code - value[0] 1`] = `
|
||||
|
||||
exports[`Render properties.html-iframe - value[0] 1`] = `
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
className="{}"
|
||||
data-testid="properties.html-iframe"
|
||||
id="properties.html-iframe"
|
||||
/>
|
||||
@ -34,7 +28,7 @@ exports[`Render properties.html-iframe - value[0] 1`] = `
|
||||
|
||||
exports[`Render properties.html-styled - value[0] 1`] = `
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},{\\"background\\":\\"yellow\\",\\"padding\\":10}]}"
|
||||
className="{\\"style\\":{\\"background\\":\\"yellow\\",\\"padding\\":10}}"
|
||||
data-testid="properties.html-styled"
|
||||
id="properties.html-styled"
|
||||
/>
|
||||
@ -42,7 +36,7 @@ exports[`Render properties.html-styled - value[0] 1`] = `
|
||||
|
||||
exports[`Render properties.style - value[0] 1`] = `
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},{\\"background\\":\\"yellow\\",\\"padding\\":10}]}"
|
||||
className="{\\"style\\":{\\"background\\":\\"yellow\\",\\"padding\\":10}}"
|
||||
data-testid="properties.style"
|
||||
id="properties.style"
|
||||
/>
|
||||
|
@ -15,8 +15,8 @@ exports[`Render circleSize - value[0] 1`] = `
|
||||
htmlFor="circleSize_input"
|
||||
title="circleSize"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1184,8 +1184,8 @@ exports[`Render circleSpacing - value[0] 1`] = `
|
||||
htmlFor="circleSpacing_input"
|
||||
title="circleSpacing"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2353,8 +2353,8 @@ exports[`Render colors - value[0] 1`] = `
|
||||
htmlFor="colors_input"
|
||||
title="colors"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2530,8 +2530,8 @@ exports[`Render default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3699,8 +3699,8 @@ exports[`Render defaultColor - value[0] 1`] = `
|
||||
htmlFor="defaultColor_input"
|
||||
title="defaultColor"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4868,8 +4868,8 @@ exports[`Render inputStyle - value[0] 1`] = `
|
||||
htmlFor="inputStyle_input"
|
||||
title="inputStyle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -7192,8 +7192,8 @@ exports[`Render showValue - value[0] 1`] = `
|
||||
htmlFor="showValue_input"
|
||||
title="showValue"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -8366,8 +8366,8 @@ exports[`Render showValue, value - value[0] 1`] = `
|
||||
htmlFor="showValue, value_input"
|
||||
title="showValue, value"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -9540,8 +9540,8 @@ exports[`Render showValue, value - value[1] 1`] = `
|
||||
htmlFor="showValue, value_input"
|
||||
title="showValue, value"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -10714,8 +10714,8 @@ exports[`Render title - value[0] 1`] = `
|
||||
htmlFor="title_input"
|
||||
title="The color selector"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -11883,8 +11883,8 @@ exports[`Render valueStyle - value[0] 1`] = `
|
||||
htmlFor="valueStyle_input"
|
||||
title="valueStyle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -13057,8 +13057,8 @@ exports[`Render width - value[0] 1`] = `
|
||||
htmlFor="width_input"
|
||||
title="width"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
|
@ -15,8 +15,8 @@ exports[`Render colors - value[0] 1`] = `
|
||||
htmlFor="colors_input"
|
||||
title="colors"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -237,8 +237,8 @@ exports[`Render default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -662,8 +662,8 @@ exports[`Render defaultColor - value[0] 1`] = `
|
||||
htmlFor="defaultColor_input"
|
||||
title="defaultColor"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1087,8 +1087,8 @@ exports[`Render inputStyle - value[0] 1`] = `
|
||||
htmlFor="inputStyle_input"
|
||||
title="inputStyle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1923,8 +1923,8 @@ exports[`Render title - value[0] 1`] = `
|
||||
htmlFor="title_input"
|
||||
title="The color selector"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2348,8 +2348,8 @@ exports[`Render width - value[0] 1`] = `
|
||||
htmlFor="width_input"
|
||||
title="width"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
|
@ -15,8 +15,8 @@ exports[`Render colors - value[0] 1`] = `
|
||||
htmlFor="colors_input"
|
||||
title="colors"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -419,8 +419,8 @@ exports[`Render default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2290,8 +2290,8 @@ exports[`Render defaultColor - value[0] 1`] = `
|
||||
htmlFor="defaultColor_input"
|
||||
title="defaultColor"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4161,8 +4161,8 @@ exports[`Render inputStyle - value[0] 1`] = `
|
||||
htmlFor="inputStyle_input"
|
||||
title="inputStyle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -7889,8 +7889,8 @@ exports[`Render title - value[0] 1`] = `
|
||||
htmlFor="title_input"
|
||||
title="The color selector"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
|
@ -15,8 +15,8 @@ exports[`Render colors - value[0] 1`] = `
|
||||
htmlFor="colors_input"
|
||||
title="colors"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -168,8 +168,8 @@ exports[`Render default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -825,8 +825,8 @@ exports[`Render defaultColor - value[0] 1`] = `
|
||||
htmlFor="defaultColor_input"
|
||||
title="defaultColor"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1482,8 +1482,8 @@ exports[`Render inputStyle - value[0] 1`] = `
|
||||
htmlFor="inputStyle_input"
|
||||
title="inputStyle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2782,8 +2782,8 @@ exports[`Render title - value[0] 1`] = `
|
||||
htmlFor="title_input"
|
||||
title="The color selector"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -3439,8 +3439,8 @@ exports[`Render triangle-top-left - value[0] 1`] = `
|
||||
htmlFor="triangle-top-left_input"
|
||||
title="triangle-top-left"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4098,8 +4098,8 @@ exports[`Render triangle-top-right - value[0] 1`] = `
|
||||
htmlFor="triangle-top-right_input"
|
||||
title="triangle-top-right"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -4757,8 +4757,8 @@ exports[`Render width - value[0] 1`] = `
|
||||
htmlFor="width_input"
|
||||
title="width"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
|
@ -15,8 +15,8 @@ exports[`Render colors - value[0] 1`] = `
|
||||
htmlFor="colors_input"
|
||||
title="colors"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -288,8 +288,8 @@ exports[`Render default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -561,8 +561,8 @@ exports[`Render defaultColor - value[0] 1`] = `
|
||||
htmlFor="defaultColor_input"
|
||||
title="defaultColor"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -834,8 +834,8 @@ exports[`Render inputStyle - value[0] 1`] = `
|
||||
htmlFor="inputStyle_input"
|
||||
title="inputStyle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1366,8 +1366,8 @@ exports[`Render title - value[0] 1`] = `
|
||||
htmlFor="title_input"
|
||||
title="The color selector"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
|
@ -15,8 +15,8 @@ exports[`Render colors - value[0] 1`] = `
|
||||
htmlFor="colors_input"
|
||||
title="colors"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -358,8 +358,8 @@ exports[`Render default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -5374,8 +5374,8 @@ exports[`Render defaultColor - value[0] 1`] = `
|
||||
htmlFor="defaultColor_input"
|
||||
title="defaultColor"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -10390,8 +10390,8 @@ exports[`Render height - value[0] 1`] = `
|
||||
htmlFor="height_input"
|
||||
title="height"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -15406,8 +15406,8 @@ exports[`Render inputStyle - value[0] 1`] = `
|
||||
htmlFor="inputStyle_input"
|
||||
title="inputStyle"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -25424,8 +25424,8 @@ exports[`Render title - value[0] 1`] = `
|
||||
htmlFor="title_input"
|
||||
title="The color selector"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -30440,8 +30440,8 @@ exports[`Render width - value[0] 1`] = `
|
||||
htmlFor="width_input"
|
||||
title="width"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
|
@ -15,8 +15,8 @@ exports[`Render colors - value[0] 1`] = `
|
||||
htmlFor="colors_input"
|
||||
title="colors"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -231,8 +231,8 @@ exports[`Render default - value[0] 1`] = `
|
||||
htmlFor="default_input"
|
||||
title="default"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -671,8 +671,8 @@ exports[`Render defaultColor - value[0] 1`] = `
|
||||
htmlFor="defaultColor_input"
|
||||
title="defaultColor"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1537,8 +1537,8 @@ exports[`Render title - value[0] 1`] = `
|
||||
htmlFor="title_input"
|
||||
title="The color selector"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -1977,8 +1977,8 @@ exports[`Render triangle-top-left - value[0] 1`] = `
|
||||
htmlFor="triangle-top-left_input"
|
||||
title="triangle-top-left"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2419,8 +2419,8 @@ exports[`Render triangle-top-right - value[0] 1`] = `
|
||||
htmlFor="triangle-top-right_input"
|
||||
title="triangle-top-right"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
@ -2861,8 +2861,8 @@ exports[`Render width - value[0] 1`] = `
|
||||
htmlFor="width_input"
|
||||
title="width"
|
||||
>
|
||||
<div
|
||||
className="{\\"style\\":[{\\"display\\":\\"inline-block\\"},null]}"
|
||||
<span
|
||||
className="{}"
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
|
@ -270,6 +270,24 @@
|
||||
"items": {
|
||||
"$ref": "#/definitions/action"
|
||||
}
|
||||
},
|
||||
"debounce": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"immediate": {
|
||||
"type": "boolean",
|
||||
"errorMessage": {
|
||||
"type": "Event \"debounce.immediate\" should be an boolean."
|
||||
}
|
||||
},
|
||||
"ms": {
|
||||
"type": "number",
|
||||
"errorMessage": {
|
||||
"type": "Event \"debounce.ms\" should be a number."
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user