├── src ├── assets │ └── .gitkeep ├── favicon.ico ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── typings.d.ts ├── app │ ├── ranges-footer.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.module.ts │ ├── app.component.ts │ ├── ranges-footer.component.ts │ └── app.component.html ├── index.html ├── main.ts ├── tsconfig.app.json ├── tsconfig.spec.json ├── test.ts ├── styles.scss └── polyfills.ts ├── saturn-datepicker ├── src │ ├── datepicker │ │ ├── calendar-footer.html │ │ ├── _datepicker-theme.scss │ │ ├── README.md │ │ ├── index.ts │ │ ├── tsconfig-build.json │ │ ├── calendar-body.css │ │ ├── datepicker-errors.ts │ │ ├── multi-year-view.html │ │ ├── datepicker-content.css │ │ ├── public-api.ts │ │ ├── year-view.html │ │ ├── datepicker-toggle.css │ │ ├── datepicker-toggle.html │ │ ├── calendar-header.html │ │ ├── month-view.html │ │ ├── datepicker-content.html │ │ ├── calendar.css │ │ ├── datepicker-animations.ts │ │ ├── calendar.html │ │ ├── datepicker-intl.ts │ │ ├── datepicker-module.ts │ │ ├── calendar-body.html │ │ ├── BUILD.bazel │ │ ├── datepicker-toggle.ts │ │ ├── calendar-body.ts │ │ ├── year-view.ts │ │ ├── multi-year-view.ts │ │ ├── month-view.ts │ │ └── calendar.ts │ ├── public-api.ts │ ├── datetime │ │ ├── date-formats.ts │ │ ├── native-date-formats.ts │ │ ├── index.ts │ │ ├── date-adapter.ts │ │ ├── native-date-adapter.ts │ │ └── native-date-adapter.spec.ts │ ├── bundle.css │ └── _theming.scss ├── screenshot.png ├── package.json └── README.md ├── screenshot.png ├── ng-package.json ├── e2e ├── tsconfig.e2e.json ├── app.po.ts └── app.e2e-spec.ts ├── .editorconfig ├── tsconfig.json ├── .gitignore ├── protractor.conf.js ├── renovate.json ├── LICENSE ├── rename.php ├── .angular-cli.json ├── karma.conf.js ├── package.json ├── tslint.json ├── README.md └── angular.json /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /saturn-datepicker/src/datepicker/calendar-footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /saturn-datepicker/src/datepicker/_datepicker-theme.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaturnTeam/saturn-datepicker/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaturnTeam/saturn-datepicker/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /ng-package.json: -------------------------------------------------------------------------------- 1 | { 2 | "ngPackage": { 3 | "lib": { 4 | "styleIncludePaths": ["./src"] 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /saturn-datepicker/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaturnTeam/saturn-datepicker/HEAD/saturn-datepicker/screenshot.png -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- 1 | /* SystemJS module definition */ 2 | declare var module: NodeModule; 3 | interface NodeModule { 4 | id: string; 5 | } 6 | -------------------------------------------------------------------------------- /saturn-datepicker/src/datepicker/README.md: -------------------------------------------------------------------------------- 1 | Please see the official documentation at https://material.angular.io/components/component/datepicker 2 | -------------------------------------------------------------------------------- /src/app/ranges-footer.component.html: -------------------------------------------------------------------------------- 1 |
6 | -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/e2e", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "node" 10 | ] 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class NgPackagedPage { 4 | navigateTo() { 5 | return browser.get('/'); 6 | } 7 | 8 | getParagraphText() { 9 | return element(by.css('app-root h1')).getText(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | .code { 2 | background-color: rgba(27,31,35,.05); 3 | border-radius: 3px; 4 | font-size: 85%; 5 | margin: 0; 6 | padding: .2em .4em; 7 | } 8 | section > div { 9 | margin-bottom: 15px; 10 | } 11 | 12 | .inlineCalendarContainer { 13 | width: 300px; 14 | } 15 | -------------------------------------------------------------------------------- /saturn-datepicker/src/datepicker/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright Google LLC All Rights Reserved. 4 | * 5 | * Use of this source code is governed by an MIT-style license that can be 6 | * found in the LICENSE file at https://angular.io/license 7 | */ 8 | 9 | export * from './public-api'; 10 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /saturn-datepicker/src/public-api.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright Google LLC All Rights Reserved. 4 | * 5 | * Use of this source code is governed by an MIT-style license that can be 6 | * found in the LICENSE file at https://angular.io/license 7 | */ 8 | 9 | export * from './datetime/index'; 10 | export * from './datepicker/index'; 11 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 || {{day.narrow}} |
|---|