{"id":18332820,"url":"https://github.com/creatiwity/creatdatatable","last_synced_at":"2026-01-16T06:57:12.447Z","repository":{"id":158166267,"uuid":"633810412","full_name":"Creatiwity/CreatDataTable","owner":"Creatiwity","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-17T10:50:50.000Z","size":287,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-07-18T03:48:24.909Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Creatiwity.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-04-28T10:29:28.000Z","updated_at":"2023-08-21T13:56:45.000Z","dependencies_parsed_at":"2024-04-15T16:14:00.833Z","dependency_job_id":"79e0eaa9-9562-46c7-bb2c-779bb9fd6e9e","html_url":"https://github.com/Creatiwity/CreatDataTable","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/Creatiwity/CreatDataTable","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Creatiwity%2FCreatDataTable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Creatiwity%2FCreatDataTable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Creatiwity%2FCreatDataTable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Creatiwity%2FCreatDataTable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Creatiwity","download_url":"https://codeload.github.com/Creatiwity/CreatDataTable/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Creatiwity%2FCreatDataTable/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268378965,"owners_count":24240907,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-05T19:40:11.349Z","updated_at":"2026-01-16T06:57:12.428Z","avatar_url":"https://github.com/Creatiwity.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Creat Datatable\n\n[![npm version][npm-version-src]][npm-version-href]\n[![npm downloads][npm-downloads-src]][npm-downloads-href]\n[![License][license-src]][license-href]\n[![Nuxt][nuxt-src]][nuxt-href]\n\n:warning: This package is under development stay tuned. :warning:\n\nNuxt3 Typescript Simple Datatable that handles dynamic row content with generic typing\n\n- [✨ \u0026nbsp;Release Notes](/CHANGELOG.md)\n\n## Features\n\n\u003c!-- Highlight some of the features your module provide here --\u003e\n\n- \u0026nbsp;Table\n- \u0026nbsp;Generic typing\n- \u0026nbsp;Dynamic row content\n\n## Quick Setup\n\n1. Add `@creatiwity/datatable` dependency to your project\n\n```bash\n# Using pnpm\npnpm add @creatiwity/datatable\n\n# Using yarn\nyarn add @creatiwity/datatable\n\n# Using npm\nnpm install @creatiwity/datatable\n```\n\n2. Add `@creatiwity/datatable` to the `modules` section of `nuxt.config.ts`\n\n```js\nexport default defineNuxtConfig({\n  modules: [\"@creatiwity/datatable\"],\n});\n```\n\nThat's it! You can now use Creat Datatable in your Nuxt app ✨\n\n## Usage\n\n```ts\nconst dataTableInfos = {\n  headers: [\n    {\n      id: \"name\",\n      label: \"Nom\",\n    },\n  ],\n  data: [{ name: \"Toto\" }, { name: \"Tata\" }],\n};\n```\n\n```html\n\u003cCreatDatable id=\"creat-datatable\" :infos=\"dataTableInfos\"\u003e\n  \u003ctemplate #name=\"category\"\u003e\n    \u003cstrong\u003e{{ category.data.name }}\u003c/strong\u003e\n  \u003c/template\u003e\n\u003c/CreatDatable\u003e\n```\n\n\u003c!-- Badges --\u003e\n\n[npm-version-src]: https://img.shields.io/npm/v/@creatiwity/datatable/latest.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[npm-version-href]: https://npmjs.com/package/@creatiwity/datatable\n[npm-downloads-src]: https://img.shields.io/npm/dm/@creatiwity/datatable.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[npm-downloads-href]: https://npmjs.com/package/@creatiwity/datatable\n[license-src]: https://img.shields.io/npm/l/@creatiwity/datatable.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[license-href]: https://npmjs.com/package/@creatiwity/datatable\n[nuxt-src]: https://img.shields.io/badge/Nuxt-18181B?logo=nuxt.js\n[nuxt-href]: https://nuxt.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreatiwity%2Fcreatdatatable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcreatiwity%2Fcreatdatatable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreatiwity%2Fcreatdatatable/lists"}