@openremote/or-attribute-history 1.7.0-snapshot.20250625071311 → 1.7.0-snapshot.20250625151618
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/custom-elements.json +50 -11
- package/dist/umd/index.bundle.js +125 -120
- package/dist/umd/index.bundle.js.LICENSE.txt +19 -7
- package/dist/umd/index.js +129 -124
- package/dist/umd/index.js.LICENSE.txt +19 -0
- package/dist/umd/index.orbundle.js +206 -201
- package/dist/umd/index.orbundle.js.LICENSE.txt +10 -0
- package/lib/index.d.ts +10 -5
- package/lib/index.js +16 -11
- package/lib/index.js.map +1 -1
- package/package.json +8 -8
|
@@ -5,6 +5,16 @@
|
|
|
5
5
|
* Released under the MIT license
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
+
/*!
|
|
9
|
+
* ZRender, a high performance 2d drawing library.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2013, Baidu Inc.
|
|
12
|
+
* All rights reserved.
|
|
13
|
+
*
|
|
14
|
+
* LICENSE
|
|
15
|
+
* https://github.com/ecomfe/zrender/blob/master/LICENSE.txt
|
|
16
|
+
*/
|
|
17
|
+
|
|
8
18
|
/*! *****************************************************************************
|
|
9
19
|
Copyright (c) Microsoft Corporation.
|
|
10
20
|
|
|
@@ -141,3 +151,12 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
141
151
|
* Copyright 2021 Google LLC
|
|
142
152
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
143
153
|
*/
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* @license
|
|
157
|
+
* Lodash <https://lodash.com/>
|
|
158
|
+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
159
|
+
* Released under MIT license <https://lodash.com/license>
|
|
160
|
+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
161
|
+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
162
|
+
*/
|