@openremote/or-smart-notify 1.2.0-snapshot.20240512161818 → 1.2.0-snapshot.20240616202404
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/dist/umd/index.bundle.js +211 -0
- package/dist/umd/index.bundle.js.LICENSE.txt +26 -0
- package/dist/umd/index.js +211 -0
- package/dist/umd/index.js.LICENSE.txt +22 -0
- package/dist/umd/index.orbundle.js +259 -0
- package/dist/umd/index.orbundle.js.LICENSE.txt +49 -0
- package/lib/index.d.ts +1 -0
- package/package.json +6 -6
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
|
|
3
|
+
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/*!
|
|
7
|
+
* Platform.js v1.3.6
|
|
8
|
+
* Copyright 2014-2020 Benjamin Tan
|
|
9
|
+
* Copyright 2011-2013 John-David Dalton
|
|
10
|
+
* Available under MIT license
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* @license
|
|
15
|
+
* Copyright 2017 Google LLC
|
|
16
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* @license
|
|
21
|
+
* Copyright 2019 Google LLC
|
|
22
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* @license
|
|
27
|
+
* Copyright 2021 Google LLC
|
|
28
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* [js-sha256]{@link https://github.com/emn178/js-sha256}
|
|
33
|
+
*
|
|
34
|
+
* @version 0.10.1
|
|
35
|
+
* @author Chen, Yi-Cyuan [emn178@gmail.com]
|
|
36
|
+
* @copyright Chen, Yi-Cyuan 2014-2023
|
|
37
|
+
* @license MIT
|
|
38
|
+
*/
|
|
39
|
+
|
|
40
|
+
/**!
|
|
41
|
+
* url-search-params-polyfill
|
|
42
|
+
*
|
|
43
|
+
* @author Jerry Bendy (https://github.com/jerrybendy)
|
|
44
|
+
* @licence MIT
|
|
45
|
+
*/
|
|
46
|
+
|
|
47
|
+
//! moment.js
|
|
48
|
+
|
|
49
|
+
//! moment.js locale configuration
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openremote/or-smart-notify",
|
|
3
|
-
"version": "1.2.0-snapshot.
|
|
3
|
+
"version": "1.2.0-snapshot.20240616202404",
|
|
4
4
|
"description": "OpenRemote Smarty Notify element",
|
|
5
5
|
"main": "dist/umd/index.bundle.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"types": "lib/index.d.ts",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"test": "echo \"No tests\" && exit 0",
|
|
14
|
-
"
|
|
14
|
+
"prepack": "npx webpack"
|
|
15
15
|
},
|
|
16
16
|
"author": "OpenRemote",
|
|
17
17
|
"license": "AGPL-3.0-or-later",
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
"@fortawesome/fontawesome-svg-core": "^1.2.12",
|
|
20
20
|
"@fortawesome/free-regular-svg-icons": "^5.6.3",
|
|
21
21
|
"@fortawesome/free-solid-svg-icons": "^5.6.3",
|
|
22
|
-
"@openremote/core": "1.2.0-snapshot.
|
|
23
|
-
"@openremote/model": "1.2.0-snapshot.
|
|
24
|
-
"@openremote/rest": "1.2.0-snapshot.
|
|
22
|
+
"@openremote/core": "1.2.0-snapshot.20240616202404",
|
|
23
|
+
"@openremote/model": "1.2.0-snapshot.20240616202404",
|
|
24
|
+
"@openremote/rest": "1.2.0-snapshot.20240616202404",
|
|
25
25
|
"lit": "^2.0.2",
|
|
26
26
|
"moment": "^2.29.4"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@openremote/util": "1.2.0-snapshot.
|
|
29
|
+
"@openremote/util": "1.2.0-snapshot.20240616202404"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|