forked from NativeScript/nativescript-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdirectives.ts
More file actions
42 lines (40 loc) · 1.56 KB
/
directives.ts
File metadata and controls
42 lines (40 loc) · 1.56 KB
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
36
37
38
39
40
41
42
import { ListViewComponent, TemplateKeyDirective } from "./directives/list-view-comp";
import { TabViewDirective, TabViewItemDirective } from "./directives/tab-view";
import {
ActionBarComponent,
ActionBarScope,
ActionItemDirective,
NavigationButtonDirective
} from "./directives/action-bar";
import { AndroidFilterComponent, IosFilterComponent } from "./directives/platform-filters";
export const NS_DIRECTIVES = [
ListViewComponent,
TemplateKeyDirective,
TabViewDirective,
TabViewItemDirective,
ActionBarComponent,
ActionBarScope,
ActionItemDirective,
NavigationButtonDirective,
AndroidFilterComponent,
IosFilterComponent,
];
export {
ListViewComponent,
SetupItemViewArgs,
TemplateKeyDirective
} from "./directives/list-view-comp";
export { TextValueAccessor } from "./value-accessors/text-value-accessor";
export { CheckedValueAccessor } from "./value-accessors/checked-value-accessor";
export { DateValueAccessor } from "./value-accessors/date-value-accessor";
export { TimeValueAccessor } from "./value-accessors/time-value-accessor";
export { NumberValueAccessor } from "./value-accessors/number-value-accessor";
export { SelectedIndexValueAccessor } from "./value-accessors/selectedIndex-value-accessor";
export { TabViewDirective, TabViewItemDirective } from "./directives/tab-view";
export {
ActionBarComponent,
ActionBarScope,
ActionItemDirective,
NavigationButtonDirective
} from "./directives/action-bar";
export { AndroidFilterComponent, IosFilterComponent } from "./directives/platform-filters";