Skip to content

Commit baf0f0d

Browse files
authored
docs(versioning): add versioning page (#98)
## PR Checklist Please check if your PR fulfills the following requirements: <!--- [ ] Tests for the changes have been added (for bug fixes/features)--> - [x] Docs have been added/updated (for bug fixes/features) ## PR Type What kind of change does this PR introduce? <!-- Please check the one that applies to this PR using "x". --> - [ ] Bugfix - [ ] Feature - [ ] Code style update (formatting, local variables) - [ ] Refactoring (no functional changes, no API changes) - [ ] Build related changes - [ ] CI-related changes - [x] Documentation content changes - [ ] Other... Please describe: ## Issue Number <!-- Bugs and features must be linked to an issue. --> Issue Number: N/A ## Does this PR introduce a breaking change? <!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below. --> - [ ] Yes - [x] No ## Other information <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced versioning documentation for Flowbite Angular, detailing compatibility with Angular and TypeScript versions. - Added a new documentation page for versioning, including metadata and a structured overview. - **Documentation** - Created a markdown file outlining version compatibility and minor fixes alignment. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
2 parents 2ca1b36 + 40576c3 commit baf0f0d

2 files changed

Lines changed: 29 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
keyword: VersioningPage
3+
---
4+
5+
> **Note** Any minor fixes of flowbite-angular will be on the same angular version as its major
6+
> version.
7+
8+
| Flowbite-angular version | Angular version | Typescript version |
9+
| ------------------------ | --------------- | ------------------ |
10+
| 1.1.1 | 18.0.0 | 5.4.5 |
11+
| 1.0.0 | 18.0.0 | 5.4.5 |
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import GettingStartedCategory from '../ng-doc.category';
2+
3+
import type { NgDocPage } from '@ng-doc/core';
4+
5+
/**
6+
* Here is a reference table that matches versions of flowbite-angular with its Angular version. It
7+
* also shows the Typescript version used.
8+
*
9+
* @status:alert NEW
10+
*/
11+
const Versioning: NgDocPage = {
12+
title: 'Versioning',
13+
mdFile: 'index.md',
14+
category: GettingStartedCategory,
15+
order: 4,
16+
};
17+
18+
export default Versioning;

0 commit comments

Comments
 (0)