@things-factory/operato-fleet 7.0.1-beta.0 → 7.0.1-beta.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,10 +4,10 @@ body {
4
4
  --primary-color: rgb(var(--primary-color-rgb));
5
5
  --secondary-color-rgb: 52, 69, 99;
6
6
  --secondary-color: rgb(var(--secondary-color-rgb));
7
- --focus-color: var(--theme-white-color);
7
+ --focus-color: var(--md-sys-color-on-primary);
8
8
  --primary-background-color: var(--md-sys-color-secondary);
9
9
  --secondary-background-color: #283644;
10
- --theme-white-color: #fff;
10
+ --md-sys-color-on-primary: #fff;
11
11
  --theme-black-color: rgba(0, 0, 0, 0.9);
12
12
 
13
13
  --focus-background-color: var(--md-sys-color-primary);
@@ -25,7 +25,7 @@ body {
25
25
 
26
26
  /* common style */
27
27
  --border-radius: 4px;
28
- --border-dark-color: 1px solid rgba(0, 0, 0, 0.15);
28
+ --border-dim-color: 1px solid rgba(0, 0, 0, 0.15);
29
29
  --border-light-color: 1px solid rgba(255, 255, 255, 0.3);
30
30
 
31
31
  --box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1);
@@ -71,9 +71,9 @@ body {
71
71
  --icon-default-color: #fff;
72
72
 
73
73
  /* material design component themes */
74
- --mdc-theme-on-primary: var(--theme-white-color);
74
+ --mdc-theme-on-primary: var(--md-sys-color-on-primary);
75
75
  --mdc-theme-primary: var(--secondary-text-color);
76
- --mdc-theme-on-secondary: var(--theme-white-color);
76
+ --mdc-theme-on-secondary: var(--md-sys-color-on-primary);
77
77
  --mdc-theme-secondary: var(--md-sys-color-primary);
78
78
  --mdc-button-outline-color: var(--md-sys-color-primary);
79
79
  --mdc-danger-button-primary-color: var(--status-danger-color);
@@ -84,9 +84,9 @@ body {
84
84
  --md-fab-container-color: var(--md-sys-color-primary);
85
85
  --md-fab-icon-color: var(--focus-color);
86
86
 
87
- --md-theme-on-primary: var(--theme-white-color);
87
+ --md-theme-on-primary: var(--md-sys-color-on-primary);
88
88
  --md-theme-primary: var(--secondary-text-color);
89
- --md-theme-on-secondary: var(--theme-white-color);
89
+ --md-theme-on-secondary: var(--md-sys-color-on-primary);
90
90
  --md-theme-secondary: var(--md-sys-color-primary);
91
91
  --md-button-outline-color: var(--md-sys-color-primary);
92
92
  --md-danger-button-primary-color: var(--status-danger-color);
@@ -96,7 +96,7 @@ body {
96
96
 
97
97
  /* button style */
98
98
  --button-background-color: #fafbfc;
99
- --button-border: var(--border-dark-color);
99
+ --button-border: var(--border-dim-color);
100
100
  --button-border-radius: var(--border-radius);
101
101
  --button-margin: var(--margin-default) var(--margin-default) var(--margin-default) 0;
102
102
  --button-padding: calc(var(--padding-narrow) * 1.5) var(--padding-wide);
@@ -106,13 +106,13 @@ body {
106
106
  --button-active-box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2);
107
107
  --button-activ-border: 1px solid var(--md-sys-color-primary);
108
108
  --button-activ-background-color: var(--md-sys-color-primary);
109
- --button-activ-color: var(--theme-white-color);
109
+ --button-activ-color: var(--md-sys-color-on-primary);
110
110
  --iconbtn-padding: var(--padding-narrow);
111
111
 
112
112
  --button-primary-background-color: var(--md-sys-color-primary);
113
113
  --button-primary-active-background-color: var(--status-success-color);
114
114
  --button-primary-padding: var(--margin-default) var(--margin-wide);
115
- --button-primary-color: var(--theme-white-color);
115
+ --button-primary-color: var(--md-sys-color-on-primary);
116
116
  --button-primary-font: bold 16px var(--theme-font);
117
117
 
118
118
  /* table style */
File without changes
@@ -0,0 +1,2 @@
1
+ export declare const entities: any[];
2
+ export {};
@@ -0,0 +1,6 @@
1
+ import * as typeDefs from './types';
2
+ import * as resolvers from './resolvers';
3
+ export declare const schema: {
4
+ typeDefs: typeof typeDefs;
5
+ resolvers: typeof resolvers;
6
+ };
@@ -0,0 +1,2 @@
1
+ export declare const queries: any[];
2
+ export declare const mutations: any[];
@@ -0,0 +1,3 @@
1
+ export declare const queries: any[];
2
+ export declare const mutations: any[];
3
+ export declare const types: any[];
@@ -0,0 +1,5 @@
1
+ export * from './entities';
2
+ export * from './migrations';
3
+ export * from './graphql';
4
+ export * from './middlewares';
5
+ import './routes';
@@ -0,0 +1 @@
1
+ export declare function initMiddlewares(app: any): void;
@@ -0,0 +1,5 @@
1
+ import { MigrationInterface, QueryRunner } from 'typeorm';
2
+ export declare class createReport1583034342659 implements MigrationInterface {
3
+ up(queryRunner: QueryRunner): Promise<any>;
4
+ down(queryRunner: QueryRunner): Promise<any>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { MigrationInterface, QueryRunner } from 'typeorm';
2
+ export declare class createInfowindows1602897264569 implements MigrationInterface {
3
+ up(queryRunner: QueryRunner): Promise<any>;
4
+ down(queryRunner: QueryRunner): Promise<any>;
5
+ }
@@ -0,0 +1 @@
1
+ export declare var migrations: any[];
File without changes