├── .gitignore ├── README.md ├── commit.sh ├── img ├── custom1.png ├── custom2.png ├── custom3.png └── finalcountdown.png ├── package.json ├── public_api.ts ├── src ├── countdown.html ├── countdown.module.ts ├── countdown.scss ├── countdown.ts └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/README.md -------------------------------------------------------------------------------- /commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/commit.sh -------------------------------------------------------------------------------- /img/custom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/img/custom1.png -------------------------------------------------------------------------------- /img/custom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/img/custom2.png -------------------------------------------------------------------------------- /img/custom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/img/custom3.png -------------------------------------------------------------------------------- /img/finalcountdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/img/finalcountdown.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/package.json -------------------------------------------------------------------------------- /public_api.ts: -------------------------------------------------------------------------------- 1 | export * from './src/index'; -------------------------------------------------------------------------------- /src/countdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/src/countdown.html -------------------------------------------------------------------------------- /src/countdown.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/src/countdown.module.ts -------------------------------------------------------------------------------- /src/countdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/src/countdown.scss -------------------------------------------------------------------------------- /src/countdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/src/countdown.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheushf/ng2-date-countdown/HEAD/yarn.lock --------------------------------------------------------------------------------