diff --git a/apps/docs/docs/getting-started/versioning/index.md b/apps/docs/docs/getting-started/versioning/index.md new file mode 100644 index 00000000..7a2fa741 --- /dev/null +++ b/apps/docs/docs/getting-started/versioning/index.md @@ -0,0 +1,11 @@ +--- +keyword: VersioningPage +--- + +> **Note** Any minor fixes of flowbite-angular will be on the same angular version as its major +> version. + +| Flowbite-angular version | Angular version | Typescript version | +| ------------------------ | --------------- | ------------------ | +| 1.1.1 | 18.0.0 | 5.4.5 | +| 1.0.0 | 18.0.0 | 5.4.5 | diff --git a/apps/docs/docs/getting-started/versioning/ng-doc.page.ts b/apps/docs/docs/getting-started/versioning/ng-doc.page.ts new file mode 100644 index 00000000..76cd0a73 --- /dev/null +++ b/apps/docs/docs/getting-started/versioning/ng-doc.page.ts @@ -0,0 +1,18 @@ +import GettingStartedCategory from '../ng-doc.category'; + +import type { NgDocPage } from '@ng-doc/core'; + +/** + * Here is a reference table that matches versions of flowbite-angular with its Angular version. It + * also shows the Typescript version used. + * + * @status:alert NEW + */ +const Versioning: NgDocPage = { + title: 'Versioning', + mdFile: 'index.md', + category: GettingStartedCategory, + order: 4, +}; + +export default Versioning;