Skip to content

Commit

Permalink
feat: add standard table
Browse files Browse the repository at this point in the history
  • Loading branch information
James Jackson authored and AuroDesignSystem committed Jun 1, 2020
1 parent 87d5d7d commit 1143d7d
Show file tree
Hide file tree
Showing 6 changed files with 22,712 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ module.exports = {
"no-lone-blocks": "error",
"no-lonely-if": "error",
"no-loop-func": "error",
"no-magic-numbers": "error",
"no-magic-numbers": "off",
"no-mixed-operators": "error",
"no-mixed-requires": "error",
"no-multi-assign": "error",
Expand Down
17 changes: 16 additions & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,22 @@ <h1>auro-table</h1>

<demo-snippet>
<template>
<auro-table cssClass="testClass">Hello World!</auro-table>
<auro-table columnHeaders='["key1","key2","key3"]'
componentData='[
{ "key1": "value1", "key2": "value2", "key3": "value3" },
{ "key1": "value1a", "key3": "value3a" }
]'></auro-table>
</template>
</demo-snippet>

<demo-snippet>
<template>
<auro-table columnHeaders='["key1","key2","key3"]'
componentData='[
{ "key1": "value1", "key3": "value3" },
{ "key1": "value1a", "key2": "value2", "key3": "value3a" },
{ "key2": "value2b", "key3": "value3" }
]'></auro-table>
</template>
</demo-snippet>

Expand Down
Loading

0 comments on commit 1143d7d

Please sign in to comment.