idraw/packages/util/__tests__/lib/data.ts

48 lines
726 B
TypeScript
Raw Permalink Normal View History

2021-11-15 12:27:52 +00:00
export function getData() {
const data = {
elements: [
{
x: 10,
y: 10,
w: 200,
h: 120,
type: 'rect',
detail: {
color: '#f0f0f0'
2021-11-15 12:27:52 +00:00
}
},
{
x: 80,
y: 80,
w: 200,
h: 120,
type: 'rect',
detail: {
color: '#cccccc'
2021-11-15 12:27:52 +00:00
}
},
{
x: 160,
y: 160,
w: 200,
h: 120,
type: 'rect',
detail: {
color: '#c0c0c0'
2021-11-15 12:27:52 +00:00
}
},
{
x: 400 - 10,
y: 300 - 10,
w: 200,
h: 100,
type: 'rect',
detail: {
color: '#e0e0e0'
2021-11-15 12:27:52 +00:00
}
}
]
};
2021-11-15 12:27:52 +00:00
return data;
}