spyne 0.21.4 → 0.22.3
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/.github/workflows/publish.yml +21 -16
- package/.github/workflows/tests.yml +28 -0
- package/README.md +1 -1
- package/karma.conf.js +37 -24
- package/lib/spyne.esm.js +3 -3
- package/lib/spyne.esm.js.LICENSE.txt +16 -0
- package/lib/spyne.esm.js.map +1 -1
- package/lib/spyne.umd.js +2 -2
- package/lib/spyne.umd.js.LICENSE.txt +2 -2
- package/package.json +10 -7
- package/rollup.config.js +1 -1
- package/src/spyne/channels/channels-map.js +4 -0
- package/src/spyne/channels/spyne-channel-ai.js +45 -0
- package/src/spyne/spyne-app.js +2 -2
- package/src/spyne/utils/channel-payload-filter.js +1 -1
- package/src/spyne/utils/sanitize-data.js +2 -2
- package/src/spyne/views/dom-element-template.js +308 -54
- package/src/spyne/views/view-stream-selector.js +28 -1
- package/src/tests/views/dom-el-template.test.js +173 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Spyne 0.20.19
|
|
3
|
+
* https://spynejs.org
|
|
4
|
+
*
|
|
5
|
+
* @license Copyright 2017-2021, Frank Batista, Relevant Context, LLC. All rights reserved.
|
|
6
|
+
* Spyne is licensed under the GNU Lesser General Public License v3.0
|
|
7
|
+
*
|
|
8
|
+
* @author: Frank Batista,
|
|
9
|
+
* @email: frbatista.nyc@gmail.com
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
/*!
|
|
13
|
+
* spynejs 0.20.19
|
|
14
|
+
* https://spynejs.org
|
|
15
|
+
* (c) 2017-present Frank Batista
|
|
16
|
+
*/
|