Addon-docs: Update web-components props to new format

This commit is contained in:
Michael Shilman 2019-11-14 12:29:38 +08:00
parent 87cddfe06c
commit 7cbc4673d5

View File

@ -8,10 +8,10 @@ import { render } from 'lit-html';
function mapData(data) {
return data.map(item => ({
name: item.name,
type: item.type,
type: { summary: item.type },
required: '',
description: item.description,
defaultValue: item.default,
defaultValue: { summary: item.default },
}));
}