-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
590 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
packages/components/src/components/tab-list/docs/Migration.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## General | ||
|
||
> **Note** | ||
> For a general installation or migration process check out this [documentation](https://www.npmjs.com/package/@db-ui/components). | ||
## DB UI Core ➡ DB UI Components | ||
|
||
New Component 🥳 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
packages/components/src/components/tab-panel/docs/Migration.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## General | ||
|
||
> **Note** | ||
> For a general installation or migration process check out this [documentation](https://www.npmjs.com/package/@db-ui/components). | ||
## DB UI Core ➡ DB UI Components | ||
|
||
New Component 🥳 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,36 @@ | ||
## Angular | ||
|
||
TODO | ||
For general installation and configuration take a look at the [ngx-components](https://www.npmjs.com/package/@db-ui/ngx-components) package. | ||
|
||
### Load component | ||
|
||
You can't use the component standalone! | ||
|
||
```ts app.module.ts | ||
//app.module.ts | ||
import { DBTab, DBTabList, DBTabPanel, DBTabs } from '@db-ui/ngx-components'; | ||
|
||
@NgModule({ | ||
... | ||
standalone: true, | ||
imports: [..., DBTab,DBTabList,DBTabPanel,DBTabs], | ||
... | ||
}) | ||
|
||
``` | ||
|
||
### Use component | ||
|
||
```html app.component.html | ||
<!-- app.component.html --> | ||
<db-tabs> | ||
<db-tab-list> | ||
<db-tab>Tab 1</db-tab> | ||
<db-tab>Tab 2</db-tab> | ||
<db-tab>Tab 3</db-tab> | ||
</db-tab-list> | ||
<db-tab-panel>Tab Panel 1</db-tab-panel> | ||
<db-tab-panel>Tab Panel 2</db-tab-panel> | ||
<db-tab-panel>Tab Panel 3</db-tab-panel> | ||
</db-tabs> | ||
``` |
Oops, something went wrong.