update js stuff
This commit is contained in:
@@ -16,8 +16,8 @@ ext {
|
||||
version_spring = '2.6.1'
|
||||
version_junit = '5.8.2'
|
||||
version_junit_platform = '1.8.2'
|
||||
version_nodejs = '16.13.1' // keep in sync with npm
|
||||
version_npm = '8.1.2' // keep in sync with nodejs
|
||||
version_nodejs = '16.14.2' // keep in sync with npm
|
||||
version_npm = '8.5.0' // keep in sync with nodejs
|
||||
|
||||
lib_antlr = "org.antlr:antlr4:4.9.3"
|
||||
|
||||
|
||||
4
pdb-js/.gitignore
vendored
4
pdb-js/.gitignore
vendored
@@ -2,6 +2,8 @@
|
||||
|
||||
# compiled output
|
||||
/dist
|
||||
/build
|
||||
/bin
|
||||
/tmp
|
||||
/.gradle/
|
||||
/out-tsc
|
||||
@@ -45,3 +47,5 @@ testem.log
|
||||
# System Files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
#
|
||||
@@ -20,7 +20,7 @@
|
||||
"build": {
|
||||
"builder": "@angular-devkit/build-angular:browser",
|
||||
"options": {
|
||||
"outputPath": "dist/pdb-js",
|
||||
"outputPath": "build/generated/resources",
|
||||
"index": "src/index.html",
|
||||
"main": "src/main.ts",
|
||||
"polyfills": "src/polyfills.ts",
|
||||
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"type": "initial",
|
||||
"maximumWarning": "500kb",
|
||||
"maximumError": "1mb"
|
||||
"maximumError": "2mb"
|
||||
},
|
||||
{
|
||||
"type": "anyComponentStyle",
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
#
|
||||
# usage: source env.sh
|
||||
#
|
||||
export PATH=/home/andi/ws/performanceDb/repo/pdb-js/node_modules/.bin:/home/andi/ws/performanceDb/repo/pdb-js/build/npm/npm-v8.1.2/bin:/home/andi/ws/performanceDb/repo/pdb-js/.gradle/nodejs/node-v16.13.1-linux-x64/bin:$PATH
|
||||
9019
pdb-js/package-lock.json
generated
9019
pdb-js/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -13,26 +13,26 @@
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "~13.1.0",
|
||||
"@angular/cdk": "^13.1.0",
|
||||
"@angular/common": "~13.1.0",
|
||||
"@angular/compiler": "~13.1.0",
|
||||
"@angular/core": "~13.1.0",
|
||||
"@angular/forms": "~13.1.0",
|
||||
"@angular/material": "^13.1.0",
|
||||
"@angular/platform-browser": "~13.1.0",
|
||||
"@angular/platform-browser-dynamic": "~13.1.0",
|
||||
"@angular/router": "~13.1.0",
|
||||
"@angular/animations": "~13.3.0",
|
||||
"@angular/cdk": "^13.3.0",
|
||||
"@angular/common": "~13.3.0",
|
||||
"@angular/compiler": "~13.3.0",
|
||||
"@angular/core": "~13.3.0",
|
||||
"@angular/forms": "~13.3.0",
|
||||
"@angular/material": "^13.3.0",
|
||||
"@angular/platform-browser": "~13.3.0",
|
||||
"@angular/platform-browser-dynamic": "~13.3.0",
|
||||
"@angular/router": "~13.3.0",
|
||||
"moment": "^2.29.1",
|
||||
"rxjs": "~7.4.0",
|
||||
"rxjs": "~7.5.0",
|
||||
"rxjs-compat": "^6.6.7",
|
||||
"tslib": "^2.3.0",
|
||||
"zone.js": "~0.11.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "~13.1.1",
|
||||
"@angular/cli": "~13.1.1",
|
||||
"@angular/compiler-cli": "~13.1.0",
|
||||
"@angular-devkit/build-angular": "~13.3.0",
|
||||
"@angular/cli": "~13.3.0",
|
||||
"@angular/compiler-cli": "~13.3.0",
|
||||
"@types/jasmine": "~3.10.0",
|
||||
"@types/node": "^12.11.1",
|
||||
"jasmine-core": "~3.10.0",
|
||||
@@ -41,6 +41,6 @@
|
||||
"karma-coverage": "~2.1.0",
|
||||
"karma-jasmine": "~4.0.0",
|
||||
"karma-jasmine-html-reporter": "~1.7.0",
|
||||
"typescript": "~4.5.2"
|
||||
"typescript": "~4.6.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,39 @@
|
||||
// Custom Theming for Angular Material
|
||||
// For more information: https://material.angular.io/guide/theming
|
||||
@use '@angular/material' as mat;
|
||||
// Plus imports for other components in your app.
|
||||
|
||||
// Include the common styles for Angular Material. We include this here so that you only
|
||||
// have to load a single css file for Angular Material in your app.
|
||||
// Be sure that you only ever include this mixin once!
|
||||
@include mat.core();
|
||||
|
||||
// Define the palettes for your theme using the Material Design palettes available in palette.scss
|
||||
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
|
||||
// hue. Available color palettes: https://material.io/design/color/
|
||||
$candy-app-primary: mat.define-palette(mat.$blue-palette);
|
||||
$candy-app-accent: mat.define-palette(mat.$blue-palette, A200, A100, A400);
|
||||
|
||||
// The warn palette is optional (defaults to red).
|
||||
$candy-app-warn: mat.define-palette(mat.$red-palette);
|
||||
|
||||
// Create the theme object. A theme consists of configurations for individual
|
||||
// theming systems such as "color" or "typography".
|
||||
$candy-app-theme: mat.define-light-theme((
|
||||
color: (
|
||||
primary: $candy-app-primary,
|
||||
accent: $candy-app-accent,
|
||||
warn: $candy-app-warn,
|
||||
)
|
||||
));
|
||||
|
||||
// Include theme styles for core and each component used in your app.
|
||||
// Alternatively, you can import and @include the theme mixins for each component
|
||||
// that you are using.
|
||||
@include mat.all-component-themes($candy-app-theme);
|
||||
|
||||
|
||||
|
||||
/*
|
||||
blue
|
||||
#CBD7F4
|
||||
@@ -18,11 +54,6 @@ grey
|
||||
*/
|
||||
$background-color: #CBD7F4;
|
||||
|
||||
|
||||
|
||||
//@import '~@angular/material/prebuilt-themes/deeppurple-amber.css';
|
||||
@import 'custom-theme.scss';
|
||||
|
||||
*, body {
|
||||
font-family: Arial;
|
||||
font-size: 14px;
|
||||
|
||||
Reference in New Issue
Block a user