Skip to content

Commit

Permalink
refactor(docs): common refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
32penkin committed Jun 11, 2019
1 parent 281eb98 commit 67e84d2
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 16 deletions.
Expand Up @@ -38,6 +38,7 @@
}
span {
word-wrap: normal;
line-height: 2rem;
}
}

Expand Down
2 changes: 1 addition & 1 deletion docs/src/app/documentation/page/page.component.ts
Expand Up @@ -66,7 +66,7 @@ export class NgdPageComponent implements OnInit, AfterContentChecked, OnDestroy
}),
filter(item => item),
tap((item: any) => {
this.titleService.setTitle(`RNUK - ${item.name}`);
this.titleService.setTitle(`UI Kitten - ${item.name}`);
}),
publishReplay(),
refCount(),
Expand Down
28 changes: 14 additions & 14 deletions docs/src/structure.ts
Expand Up @@ -134,6 +134,20 @@ export const structure = [
type: 'group',
name: 'Global',
},
{
type: 'tabs',
name: 'Text',
icon: 'text.svg',
source: [
'Text',
],
overview: [
{
name: 'Text',
images: ['text.png'],
},
],
},
{
type: 'tabs',
name: 'Layout',
Expand Down Expand Up @@ -383,20 +397,6 @@ export const structure = [
},
],
},
{
type: 'tabs',
name: 'Text',
icon: 'text.svg',
source: [
'Text',
],
overview: [
{
name: 'Text',
images: ['text.png'],
},
],
},
],
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/framework/ui/layout/layout.component.tsx
Expand Up @@ -34,7 +34,7 @@ export type LayoutProps = StyledComponentProps & ViewProps & ComponentProps;
* @extends React.Component
*
* @property {string} level - Determines background color level of component.
* Can be `1`, `2`, `3` or `4`.
* Can be `level='1'`, `level='2'`, `level='3'` or `level='4'`.
*
* @property {React.ReactElement<any> | React.ReactElement<any>[]} children - Determines the children of the component.
*
Expand Down

0 comments on commit 67e84d2

Please sign in to comment.