@quandis/qbo4.logging 4.0.1-CI-20240328-192659 → 4.0.1-CI-20240406-130740
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.
- package/package.json +5 -3
- package/scss/qbo-find.css +11852 -0
- package/scss/qbo-find.css.map +1 -0
- package/scss/qbo-find.scss +6 -0
- package/scss/qbo-logging.css +11852 -0
- package/scss/qbo-logging.css.map +1 -0
- package/scss/qbo-logging.scss +38 -0
- package/scss/qbo-modal.scss +38 -0
- package/scss/styles.ts +2 -0
- package/src/ApplicationInsights.d.ts +27 -27
- package/src/ConsoleLogger.d.ts +10 -10
- package/src/ILogEntry.d.ts +7 -7
- package/src/ILogReader.d.ts +10 -10
- package/src/ILogger.d.ts +22 -22
- package/src/ILoggerService.d.ts +13 -13
- package/src/LoggerService.d.ts +24 -24
- package/src/MemoryLogger.d.ts +24 -24
- package/src/Program.d.ts +26 -26
- package/src/Program.js +1 -1
- package/src/Program.js.map +1 -1
- package/src/Program.ts +1 -1
- package/src/qbo-find.d.ts +1 -1
- package/src/qbo-logging.d.ts +34 -34
- package/src/styles.d.ts +3 -3
- package/wwwroot/css/qbo-find.css +1498 -0
- package/wwwroot/css/qbo-find.css.map +1 -0
- package/wwwroot/css/qbo-find.min.css +5 -0
- package/wwwroot/css/qbo-logging.css +1501 -0
- package/wwwroot/css/qbo-logging.css.map +1 -0
- package/wwwroot/css/qbo-logging.min.css +5 -0
- package/wwwroot/css/qbo-modal.css +1498 -0
- package/wwwroot/css/qbo-modal.css.map +1 -0
- package/wwwroot/css/qbo-modal.min.css +5 -0
- package/wwwroot/js/qbo4.logging.js +859 -207
- package/wwwroot/js/qbo4.logging.min.js +11 -11
- package/wwwroot/js/qbo4.logging.min.js.map +1 -1
package/src/qbo-logging.d.ts
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
import { LitElement } from "lit";
|
|
2
|
-
import { ILogEntry } from "./ILogEntry.js";
|
|
3
|
-
export declare class QboLogging extends LitElement {
|
|
4
|
-
static styles: import("lit").CSSResult[];
|
|
5
|
-
debug: boolean;
|
|
6
|
-
info: boolean;
|
|
7
|
-
warning: boolean;
|
|
8
|
-
error: boolean;
|
|
9
|
-
critial: boolean;
|
|
10
|
-
window: boolean;
|
|
11
|
-
logs: ILogEntry[];
|
|
12
|
-
logCounts: {
|
|
13
|
-
0: number;
|
|
14
|
-
1: number;
|
|
15
|
-
2: number;
|
|
16
|
-
3: number;
|
|
17
|
-
4: number;
|
|
18
|
-
5: number;
|
|
19
|
-
};
|
|
20
|
-
showModal: boolean;
|
|
21
|
-
private loggerService;
|
|
22
|
-
private static logLevelNames;
|
|
23
|
-
constructor();
|
|
24
|
-
showLogs(): void;
|
|
25
|
-
hideLogs(): void;
|
|
26
|
-
logWindowError: (event: any) => void;
|
|
27
|
-
logRejection: (event: any) => void;
|
|
28
|
-
addLog: (event: any) => void;
|
|
29
|
-
toLog(event: CustomEvent): ILogEntry;
|
|
30
|
-
connectedCallback(): Promise<void>;
|
|
31
|
-
disconnectedCallback(): Promise<void>;
|
|
32
|
-
renderLogCounts(): void;
|
|
33
|
-
render(): import("lit-html").TemplateResult<1>;
|
|
34
|
-
}
|
|
1
|
+
import { LitElement } from "lit";
|
|
2
|
+
import { ILogEntry } from "./ILogEntry.js";
|
|
3
|
+
export declare class QboLogging extends LitElement {
|
|
4
|
+
static styles: import("lit").CSSResult[];
|
|
5
|
+
debug: boolean;
|
|
6
|
+
info: boolean;
|
|
7
|
+
warning: boolean;
|
|
8
|
+
error: boolean;
|
|
9
|
+
critial: boolean;
|
|
10
|
+
window: boolean;
|
|
11
|
+
logs: ILogEntry[];
|
|
12
|
+
logCounts: {
|
|
13
|
+
0: number;
|
|
14
|
+
1: number;
|
|
15
|
+
2: number;
|
|
16
|
+
3: number;
|
|
17
|
+
4: number;
|
|
18
|
+
5: number;
|
|
19
|
+
};
|
|
20
|
+
showModal: boolean;
|
|
21
|
+
private loggerService;
|
|
22
|
+
private static logLevelNames;
|
|
23
|
+
constructor();
|
|
24
|
+
showLogs(): void;
|
|
25
|
+
hideLogs(): void;
|
|
26
|
+
logWindowError: (event: any) => void;
|
|
27
|
+
logRejection: (event: any) => void;
|
|
28
|
+
addLog: (event: any) => void;
|
|
29
|
+
toLog(event: CustomEvent): ILogEntry;
|
|
30
|
+
connectedCallback(): Promise<void>;
|
|
31
|
+
disconnectedCallback(): Promise<void>;
|
|
32
|
+
renderLogCounts(): void;
|
|
33
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
34
|
+
}
|
package/src/styles.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const loggingStyles: import("lit").CSSResult;
|
|
2
|
-
export declare const findStyles: import("lit").CSSResult;
|
|
3
|
-
export declare const modalStyles: import("lit").CSSResult;
|
|
1
|
+
export declare const loggingStyles: import("lit").CSSResult;
|
|
2
|
+
export declare const findStyles: import("lit").CSSResult;
|
|
3
|
+
export declare const modalStyles: import("lit").CSSResult;
|