-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(app): implement search * feat(app): implement move dialog * (feat): update packages * fix(navigation-bar): active links * feat(dialog): update styles * refactor(print-dialog): styles * refactor(app): remove version service * feat(app): implement appConfig * refactor(app): use appConfig * refactor(app): add missed type * feat(app): extend appConfig * fix(mixins): overflow auto * feat(#123): implement csv export * feat(app): implement mileage component * chore(app) update dependencies * feat(#125): implement new common table * refactor(app): remove unsed components * feat(settings): implement api for save hidden columns * feat(export.service): extend API * feat(utils): extend API * chore(app): update deps * feat(app): big update * feat(app): Updated mileage and currency styles * chore(app): Updated deps * feat(app): Updated components * refactor(app): Removed input component * Kz translation (#130) * feat:(#129): Added translation for kz users * feat(#129): Updated kz currency icon --------- Co-authored-by: mkinitcpio <aliaksandr.kazhamiaka@gmail.com> * refactor(app): table and widgets * refactor(menu): translation and styles * fix(table): Removed onPush strategy * fix(settings): Styles * refactor(input): Updated styles * refactor(feedback-dialog): Update styles * refactor(create-car-dialog): Updated styles * fix(number-separator): Updated format value logic * refactor(table): Added empty message text * refactor(table): Extented API * fix(app): Update global date localizataion * fix(app): Global fixes * fix(date-picker): Updated styles * fix(detail): Add missed code * fix(print-dialog): Fixed broken styles * fix(settings): Fixed broken styles * fix(translation): Added missed translation for tenge * fix(translation): Fixed error * refactor(settings): Updated styles * refactor(table-panel): Updated styles * refactor(menu): Updated header style * refactor(create-dialog): Removed background * feat(#131): Implement deletion of rows * chore(app): Prepared for 4.3.0 release * fix(app): Styles --------- Co-authored-by: Sabyrzhan <42386139+megasaab@users.noreply.github.com>
- Loading branch information
1 parent
59dd953
commit 41c8155
Showing
192 changed files
with
3,928 additions
and
1,448 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ src/**/*.js | |
|
||
# dependencies | ||
/node_modules | ||
/.angular | ||
|
||
# IDEs and editors | ||
/.idea | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { InjectionToken } from "@angular/core"; | ||
import packageJson from '../../package.json'; | ||
|
||
const version = packageJson.version; | ||
export const APP_CONFIG = new InjectionToken<string>('APP_CONFIG'); | ||
|
||
export interface AppConfig { | ||
version: string; | ||
documentationUrl: string; | ||
sourceCodeUrl: string; | ||
fileEncoding: BufferEncoding; | ||
} | ||
|
||
export const appConfig: AppConfig = { | ||
version, | ||
documentationUrl: 'https://mkinitcpio.gitbook.io/car-maintenance', | ||
sourceCodeUrl: 'https://github.com/mkinitcpio/car-maintenance', | ||
fileEncoding: 'utf8', | ||
}; |
Oops, something went wrong.