{{day.narrow}} | 5 |
---|
46 |
47 | {{codeColorPicker}}
48 |
49 |
50 |
116 |
117 | {{codeDatePicker}}
118 |
119 |
120 |
88 |
89 | {{codeTimePicker}}
90 |
91 |
92 | 2 | home works! 3 |
4 | -------------------------------------------------------------------------------- /src/app/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2qutc/ngx-mat-datetime-picker/589180053342930731050e6213e30a58a66ccc43/src/app/home/home.component.scss -------------------------------------------------------------------------------- /src/app/home/home.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'ngx-mat-home', 5 | templateUrl: './home.component.html', 6 | styleUrls: ['./home.component.scss'] 7 | }) 8 | export class HomeComponent implements OnInit { 9 | 10 | constructor() { } 11 | 12 | ngOnInit() { 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/app/home/index.ts: -------------------------------------------------------------------------------- 1 | export * from './home.component'; -------------------------------------------------------------------------------- /src/app/shared/_common.scss: -------------------------------------------------------------------------------- 1 | .config-wrapper { 2 | margin-bottom: 15px; 3 | .label { 4 | font-weight: bold; 5 | margin-right: 15px; 6 | } 7 | .mat-radio-button ~ .mat-radio-button { 8 | margin-left: 16px; 9 | } 10 | 11 | &_step { 12 | .mat-form-field { 13 | margin-right: 20px; 14 | width: 100px; 15 | } 16 | } 17 | } 18 | 19 | .zone { 20 | display: flex; 21 | justify-content: center; 22 | margin-bottom: 20px; 23 | 24 | &-value { 25 | font-weight: bold; 26 | } 27 | 28 | &-config { 29 | flex-direction: column; 30 | } 31 | } 32 | 33 | pre { 34 | line-height: 140%; 35 | white-space: pre; 36 | white-space: pre-wrap; 37 | white-space: -moz-pre-wrap; 38 | white-space: -o-pre-wrap; 39 | border: 0.5px dashed rgba(0, 0, 0, 0.12); 40 | padding-left: 10px; 41 | padding-right: 10px; 42 | background-color: #f5f5f5; 43 | } 44 | 45 | code { 46 | line-height: 140%; 47 | white-space: pre; 48 | white-space: pre-wrap; 49 | white-space: -moz-pre-wrap; 50 | white-space: -o-pre-wrap; 51 | } 52 | -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2qutc/ngx-mat-datetime-picker/589180053342930731050e6213e30a58a66ccc43/src/assets/.gitkeep -------------------------------------------------------------------------------- /src/assets/GitHub-Mark-Light-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2qutc/ngx-mat-datetime-picker/589180053342930731050e6213e30a58a66ccc43/src/assets/GitHub-Mark-Light-32px.png -------------------------------------------------------------------------------- /src/assets/btn_donate_LG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2qutc/ngx-mat-datetime-picker/589180053342930731050e6213e30a58a66ccc43/src/assets/btn_donate_LG.gif -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- 1 | # This file is currently used by autoprefixer to adjust CSS to support the below specified browsers 2 | # For additional information regarding the format and rule options, please see: 3 | # https://github.com/browserslist/browserslist#queries 4 | # 5 | # For IE 9-11 support, please remove 'not' from the last line of the file and adjust as needed 6 | 7 | > 0.5% 8 | last 2 versions 9 | Firefox ESR 10 | not dead 11 | not IE 9-11 -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | // This file can be replaced during build by using the `fileReplacements` array. 2 | // `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. 3 | // The list of file replacements can be found in `angular.json`. 4 | 5 | export const environment = { 6 | production: false 7 | }; 8 | 9 | /* 10 | * For easier debugging in development mode, you can import the following file 11 | * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. 12 | * 13 | * This import should be commented out in production mode because it will have a negative impact 14 | * on performance if an error is thrown. 15 | */ 16 | // import 'zone.js/dist/zone-error'; // Included with Angular CLI. 17 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2qutc/ngx-mat-datetime-picker/589180053342930731050e6213e30a58a66ccc43/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |