-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathng-doc.page.ts
More file actions
35 lines (31 loc) · 998 Bytes
/
ng-doc.page.ts
File metadata and controls
35 lines (31 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import type { DocThemes } from '../../doc-theme.model';
import { toIndentedJson } from '../../doc-theme.model';
import ComponentCategory from '../ng-doc.category';
import { FlowbiteDefaultComponent } from './_default.component';
import {
flowbiteFormControlTheme,
flowbiteFormFieldTheme,
flowbiteHelperTheme,
flowbiteLabelTheme,
} from 'flowbite-angular/form';
import type { NgDocPage } from '@ng-doc/core';
/**
*
*/
const Input: NgDocPage = {
title: 'Input field',
mdFile: './index.md',
category: ComponentCategory,
demos: {
flowbiteDefaultComponent: FlowbiteDefaultComponent,
},
data: {
themes: [
{ title: 'Form control', content: toIndentedJson(flowbiteFormControlTheme) },
{ title: 'Form field', content: toIndentedJson(flowbiteFormFieldTheme) },
{ title: 'Helper', content: toIndentedJson(flowbiteHelperTheme) },
{ title: 'Label', content: toIndentedJson(flowbiteLabelTheme) },
] satisfies DocThemes,
},
};
export default Input;