diff --git a/src/system/components/layout/Grid/Grid.vue b/src/system/components/layout/Grid/Grid.vue index 541b0f0d4..aca142682 100644 --- a/src/system/components/layout/Grid/Grid.vue +++ b/src/system/components/layout/Grid/Grid.vue @@ -17,18 +17,30 @@ export default { name: 'DsGrid', props: { + /** + * The vertical and horizontal gap between grid items + */ gap: { type: Number, default: 16, // TODO: how to use tokens.small here? }, + /** + * The minimum width of each column + */ minColumnWidth: { type: Number, default: 250, }, + /** + * The height of each row (recommended to use the default) + */ rowHeight: { type: Number, default: 20, }, + /** + * The outermost html tag + */ tag: { type: String, default: 'div', diff --git a/src/system/components/layout/Grid/GridItem.vue b/src/system/components/layout/Grid/GridItem.vue index db05aa3fd..3fc0eae2e 100644 --- a/src/system/components/layout/Grid/GridItem.vue +++ b/src/system/components/layout/Grid/GridItem.vue @@ -8,30 +8,44 @@