Skip to content

Commit 1deaa15

Browse files
committed
:initial commit
1 parent f04cab0 commit 1deaa15

File tree

174 files changed

+17472
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

174 files changed

+17472
-1
lines changed

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# OS Files
2+
.DS_Store
3+
Thumbs.db
4+
5+
# Dependencies
6+
# node_modules/
7+
8+
# Dev/Build Artifacts
9+
/dist/
10+
/tests/e2e/videos/
11+
/tests/e2e/screenshots/
12+
/tests/unit/coverage/
13+
jsconfig.json
14+
15+
# Local Env Files
16+
.env.local
17+
.env.*.local
18+
19+
# Log Files
20+
*.log
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
25+
# Unconfigured Editors
26+
.idea
27+
*.suo
28+
*.ntvs*
29+
*.njsproj
30+
*.sln
31+
*.sw*
32+
#Yarn
33+
yarn.lock

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
1.0.0 (JULY 21, 2020)
2+
Initial release

README.md

Lines changed: 552 additions & 1 deletion
Large diffs are not rendered by default.

bundles/ng2-date-picker.umd.js

Lines changed: 3044 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/ng2-date-picker.umd.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/ng2-date-picker.umd.min.js

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/ng2-date-picker.umd.min.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import { EventEmitter } from '@angular/core';
2+
import * as ɵngcc0 from '@angular/core';
3+
export declare class CalendarNavComponent {
4+
label: string;
5+
isLabelClickable: boolean;
6+
showLeftNav: boolean;
7+
showLeftSecondaryNav: boolean;
8+
showRightNav: boolean;
9+
showRightSecondaryNav: boolean;
10+
leftNavDisabled: boolean;
11+
leftSecondaryNavDisabled: boolean;
12+
rightNavDisabled: boolean;
13+
rightSecondaryNavDisabled: boolean;
14+
showGoToCurrent: boolean;
15+
theme: string;
16+
onLeftNav: EventEmitter<null>;
17+
onLeftSecondaryNav: EventEmitter<null>;
18+
onRightNav: EventEmitter<null>;
19+
onRightSecondaryNav: EventEmitter<null>;
20+
onLabelClick: EventEmitter<null>;
21+
onGoToCurrent: EventEmitter<null>;
22+
leftNavClicked(): void;
23+
leftSecondaryNavClicked(): void;
24+
rightNavClicked(): void;
25+
rightSecondaryNavClicked(): void;
26+
labelClicked(): void;
27+
static ɵfac: ɵngcc0.ɵɵFactoryDef<CalendarNavComponent, never>;
28+
static ɵcmp: ɵngcc0.ɵɵComponentDefWithMeta<CalendarNavComponent, "dp-calendar-nav", never, { "isLabelClickable": "isLabelClickable"; "showLeftNav": "showLeftNav"; "showLeftSecondaryNav": "showLeftSecondaryNav"; "showRightNav": "showRightNav"; "showRightSecondaryNav": "showRightSecondaryNav"; "leftNavDisabled": "leftNavDisabled"; "leftSecondaryNavDisabled": "leftSecondaryNavDisabled"; "rightNavDisabled": "rightNavDisabled"; "rightSecondaryNavDisabled": "rightSecondaryNavDisabled"; "showGoToCurrent": "showGoToCurrent"; "label": "label"; "theme": "theme"; }, { "onLeftNav": "onLeftNav"; "onLeftSecondaryNav": "onLeftSecondaryNav"; "onRightNav": "onRightNav"; "onRightSecondaryNav": "onRightSecondaryNav"; "onLabelClick": "onLabelClick"; "onGoToCurrent": "onGoToCurrent"; }, never, never>;
29+
}
30+
31+
//# sourceMappingURL=calendar-nav.component.d.ts.map
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { EventEmitter } from '@angular/core';
2+
export declare class CalendarNavComponent {
3+
label: string;
4+
isLabelClickable: boolean;
5+
showLeftNav: boolean;
6+
showLeftSecondaryNav: boolean;
7+
showRightNav: boolean;
8+
showRightSecondaryNav: boolean;
9+
leftNavDisabled: boolean;
10+
leftSecondaryNavDisabled: boolean;
11+
rightNavDisabled: boolean;
12+
rightSecondaryNavDisabled: boolean;
13+
showGoToCurrent: boolean;
14+
theme: string;
15+
onLeftNav: EventEmitter<null>;
16+
onLeftSecondaryNav: EventEmitter<null>;
17+
onRightNav: EventEmitter<null>;
18+
onRightSecondaryNav: EventEmitter<null>;
19+
onLabelClick: EventEmitter<null>;
20+
onGoToCurrent: EventEmitter<null>;
21+
leftNavClicked(): void;
22+
leftSecondaryNavClicked(): void;
23+
rightNavClicked(): void;
24+
rightSecondaryNavClicked(): void;
25+
labelClicked(): void;
26+
}

calendar-nav/calendar-nav.component.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)