@quandis/qbo4.logging 4.0.1-CI-20240912-143931 → 4.0.1-CI-20241009-220836
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 +19 -19
- package/scss/qbo-find.scss +1 -1
- package/scss/qbo-logging.scss +1 -1
- package/scss/qbo-modal.scss +1 -1
- package/wwwroot/css/qbo-find.css +613 -40
- package/wwwroot/css/qbo-find.css.map +1 -1
- package/wwwroot/css/qbo-find.min.css +1 -1
- package/wwwroot/css/qbo-logging.css +609 -40
- package/wwwroot/css/qbo-logging.css.map +1 -1
- package/wwwroot/css/qbo-logging.min.css +1 -1
- package/wwwroot/css/qbo-modal.css +609 -40
- package/wwwroot/css/qbo-modal.css.map +1 -1
- package/wwwroot/css/qbo-modal.min.css +1 -1
- package/wwwroot/js/esm/qbo4.logging.js +63913 -0
- package/wwwroot/js/esm/qbo4.logging.min.js +126 -0
- package/wwwroot/js/esm/qbo4.logging.min.js.LICENSE.txt +43 -0
- package/wwwroot/js/esm/qbo4.logging.min.js.map +1 -0
- package/wwwroot/js/qbo4.logging.js +1258 -1136
- package/wwwroot/js/qbo4.logging.min.js +32 -26
- package/wwwroot/js/qbo4.logging.min.js.LICENSE.txt +1 -1
- package/wwwroot/js/qbo4.logging.min.js.map +1 -1
- package/src/declarations.d.ts +0 -4
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/*! *****************************************************************************
|
|
2
|
+
Copyright (C) Microsoft. All rights reserved.
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
4
|
+
this file except in compliance with the License. You may obtain a copy of the
|
|
5
|
+
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
8
|
+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
9
|
+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
10
|
+
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
11
|
+
|
|
12
|
+
See the Apache Version 2.0 License for specific language governing permissions
|
|
13
|
+
and limitations under the License.
|
|
14
|
+
***************************************************************************** */
|
|
15
|
+
|
|
16
|
+
/*! *****************************************************************************
|
|
17
|
+
Copyright (c) Microsoft Corporation.
|
|
18
|
+
|
|
19
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
20
|
+
purpose with or without fee is hereby granted.
|
|
21
|
+
|
|
22
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
23
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
24
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
25
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
26
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
27
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
28
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
29
|
+
***************************************************************************** */
|
|
30
|
+
|
|
31
|
+
/*! https://github.com/nevware21/ts-utils v0.11.4 */
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @license
|
|
35
|
+
* Copyright 2017 Google LLC
|
|
36
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
37
|
+
*/
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* @license
|
|
41
|
+
* Copyright 2019 Google LLC
|
|
42
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
43
|
+
*/
|