{"id":15099297,"url":"https://github.com/ekateriinal/lit-simple-table","last_synced_at":"2026-02-06T17:03:06.736Z","repository":{"id":245324948,"uuid":"817841230","full_name":"ekateriinal/lit-simple-table","owner":"ekateriinal","description":"Simple dynamic table component build with Lit.js","archived":false,"fork":false,"pushed_at":"2024-06-21T08:55:44.000Z","size":623,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-05T04:05:29.018Z","etag":null,"topics":["dynamic-table","lit-component","lit-html","table-component","table-web-component","web-components"],"latest_commit_sha":null,"homepage":"https://lit.dev/playground/#view-mode=code\u0026gist=5638bc680a41c789017576578363c481","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ekateriinal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-20T14:49:28.000Z","updated_at":"2024-06-21T08:55:48.000Z","dependencies_parsed_at":"2024-06-21T12:14:58.707Z","dependency_job_id":"5eaa2788-7e0a-471a-ae7e-3fab7be9aa19","html_url":"https://github.com/ekateriinal/lit-simple-table","commit_stats":null,"previous_names":["ekateriinal/stencil-easy-table","ekateriinal/lit-easy-table"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ekateriinal/lit-simple-table","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekateriinal%2Flit-simple-table","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekateriinal%2Flit-simple-table/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekateriinal%2Flit-simple-table/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekateriinal%2Flit-simple-table/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ekateriinal","download_url":"https://codeload.github.com/ekateriinal/lit-simple-table/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekateriinal%2Flit-simple-table/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29169384,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T16:33:35.550Z","status":"ssl_error","status_checked_at":"2026-02-06T16:33:30.716Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dynamic-table","lit-component","lit-html","table-component","table-web-component","web-components"],"created_at":"2024-09-25T17:09:34.915Z","updated_at":"2026-02-06T17:03:06.690Z","avatar_url":"https://github.com/ekateriinal.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple table component build with Lit\n\n**View Lit Playground:** **[redirect to the playground](https://tinyurl.com/mw6kjdb2)**\n---\n\nThis repository contains a set of Lit.js components to create accessible and customizable tables. The components included are:\n\n- `\u003cmy-table\u003e`: The main table component that wraps headers and rows.\n- `\u003ctable-cell\u003e`: The cell component used for both headers and body cells.\n- `\u003ctable-row\u003e`: The row component that wraps cells within a table row.\n\n## Components\n\n### `\u003cmy-table\u003e`\n\nA wrapper component for table headers and rows.\n\n**Default slot:**\n\n- `table-cell` and `table-row` components to be used inside.\n\n#### Example:\n\n```html\n\u003cmy-table\u003e\n  \u003ctable-cell type=\"title\"\u003eHeader 1\u003c/table-cell\u003e\n  \u003ctable-cell type=\"title\"\u003eHeader 2\u003c/table-cell\u003e\n  \u003ctable-cell type=\"title\"\u003eHeader 3\u003c/table-cell\u003e\n  \u003ctable-row\u003e\n    \u003ctable-cell\u003eData 1\u003c/table-cell\u003e\n    \u003ctable-cell\u003eData 2\u003c/table-cell\u003e\n    \u003ctable-cell\u003eData 3\u003c/table-cell\u003e\n  \u003c/table-row\u003e\n  \u003ctable-row\u003e\n    \u003ctable-cell type=\"strong\"\u003eData 4\u003c/table-cell\u003e\n    \u003ctable-cell\u003eData 5\u003c/table-cell\u003e\n    \u003ctable-cell\u003eData 6\u003c/table-cell\u003e\n  \u003c/table-row\u003e\n\u003c/my-table\u003e\n```\n\n### `\u003ctable-cell\u003e`\n\nA cell component for table headers and body cells.\n\n**Properties:**\n\n| Property | Type   | Description                                         | Possible Values                              |\n|----------|--------|-----------------------------------------------------|----------------------------------------------|\n| `type`   | String | Defines the type of the cell.                       | `'title'`: Used for header cells.            |\n|          |        |                                                     | `'body'`: Used for regular body cells (default). |\n|          |        |                                                     | `'strong'`: Used for bold text in body cells. |\n\n**Example:**\n\n```html\n\u003ctable-cell type=\"title\"\u003eHeader 1\u003c/table-cell\u003e\n\u003ctable-cell\u003eData 1\u003c/table-cell\u003e\n\u003ctable-cell type=\"strong\"\u003eStrong Data\u003c/table-cell\u003e\n```\n\n### `\u003ctable-row\u003e`\nA wrapper component for table rows. It acts as a wrapper for \u003ctr\u003e elements without breaking accessibility and table relationships.\n\n**Example:**\n```html\n\u003ctable-row\u003e\n  \u003ctable-cell\u003eData 1\u003c/table-cell\u003e\n  \u003ctable-cell\u003eData 2\u003c/table-cell\u003e\n  \u003ctable-cell\u003eData 3\u003c/table-cell\u003e\n\u003c/table-row\u003e\n```\nThis repository was built with the help of the [lit-starter-ts](https://github.com/lit/lit-element-starter-ts) repo.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fekateriinal%2Flit-simple-table","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fekateriinal%2Flit-simple-table","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fekateriinal%2Flit-simple-table/lists"}