Skip to content

Commit 4a2baf8

Browse files
author
louiiuol
committed
[Doc] Moved documentation next to components
1 parent d69da64 commit 4a2baf8

File tree

10 files changed

+5
-5
lines changed

10 files changed

+5
-5
lines changed
File renamed without changes.

src/docs/components/button/ng-doc.page.ts renamed to src/app/components/atoms/button/ng-doc.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { NgDocPage } from '@ng-doc/core';
22
import { ButtonComponent } from 'src/app/components/atoms/button/button.component';
3-
import ComponentsCategory from 'src/docs/components/ng-doc.category';
3+
import ComponentsCategory from 'src/app/components/ng-doc.category';
44

55
const Button: NgDocPage = {
66
title: `Button`,
File renamed without changes.

src/docs/components/icon-material/ng-doc.page.ts renamed to src/app/components/atoms/icon-material/ng-doc.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { NgDocPage } from '@ng-doc/core';
22
import { IconMaterialComponent } from 'src/app/components/atoms/icon-material/icon-material.component';
3-
import ComponentsCategory from 'src/docs/components/ng-doc.category';
3+
import ComponentsCategory from 'src/app/components/ng-doc.category';
44

55
const IconMaterialPage: NgDocPage = {
66
title: `Icon Material`,
File renamed without changes.

src/docs/components/icon/ng-doc.page.ts renamed to src/app/components/atoms/icon/ng-doc.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { NgDocPage } from '@ng-doc/core';
22
import { IconComponent } from 'src/app/components/atoms/icon/icon.component';
3-
import ComponentsCategory from 'src/docs/components/ng-doc.category';
3+
import ComponentsCategory from 'src/app/components/ng-doc.category';
44

55
const IconPage: NgDocPage = {
66
title: `Icon`,
File renamed without changes.

src/app/components/molecules/message/message.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class MessageComponent {
4949
/** Secondary message, provide more context (can be omitted)
5050
* @default undefined
5151
*/
52-
details = input<string>('');
52+
details = input<string>();
5353

5454
/** Whether to display an icon before the message
5555
* @default true

src/docs/components/message/ng-doc.page.ts renamed to src/app/components/molecules/message/ng-doc.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { NgDocPage } from '@ng-doc/core';
22
import { MessageComponent } from 'src/app/components/molecules/message/message.component';
3-
import ComponentsCategory from 'src/docs/components/ng-doc.category';
3+
import ComponentsCategory from 'src/app/components/ng-doc.category';
44

55
const Message: NgDocPage = {
66
title: `Message`,
File renamed without changes.

0 commit comments

Comments
 (0)