@matdata/yasgui 4.6.1
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/CHANGELOG.md +175 -0
- package/build/ts/src/PersistentConfig.d.ts +49 -0
- package/build/ts/src/Tab.d.ts +105 -0
- package/build/ts/src/TabContextMenu.d.ts +29 -0
- package/build/ts/src/TabElements.d.ts +45 -0
- package/build/ts/src/TabSettingsModal.d.ts +28 -0
- package/build/ts/src/defaults.d.ts +3 -0
- package/build/ts/src/endpointSelect.d.ts +44 -0
- package/build/ts/src/index.d.ts +104 -0
- package/build/ts/src/linkUtils.d.ts +43 -0
- package/build/yasgui.html +24 -0
- package/build/yasgui.min.css +2 -0
- package/build/yasgui.min.css.map +1 -0
- package/build/yasgui.min.js +3 -0
- package/build/yasgui.min.js.LICENSE.txt +59 -0
- package/build/yasgui.min.js.map +1 -0
- package/package.json +48 -0
- package/src/PersistentConfig.ts +159 -0
- package/src/Tab.ts +775 -0
- package/src/TabContextMenu.scss +42 -0
- package/src/TabContextMenu.ts +143 -0
- package/src/TabElements.scss +134 -0
- package/src/TabElements.ts +336 -0
- package/src/TabSettingsModal.scss +226 -0
- package/src/TabSettingsModal.ts +424 -0
- package/src/defaults.ts +64 -0
- package/src/endpointSelect.scss +122 -0
- package/src/endpointSelect.ts +339 -0
- package/src/index.scss +97 -0
- package/src/index.ts +373 -0
- package/src/linkUtils.ts +234 -0
- package/src/tab.scss +61 -0
- package/static/yasgui.bootstrap.css +36 -0
- package/static/yasgui.polyfill.min.js +4 -0
- package/typings-custom/@tarekraafat/autocomplete.js/index.d.ts +48 -0
- package/typings-custom/main.d.ts +1 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/* @license
|
|
2
|
+
Papa Parse
|
|
3
|
+
v5.5.3
|
|
4
|
+
https://github.com/mholt/PapaParse
|
|
5
|
+
License: MIT
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/* @preserve
|
|
9
|
+
* Leaflet 1.9.4, a JS library for interactive maps. https://leafletjs.com
|
|
10
|
+
* (c) 2010-2023 Vladimir Agafonkin, (c) 2010-2011 CloudMade
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
/*!
|
|
14
|
+
* The buffer module from node.js, for the browser.
|
|
15
|
+
*
|
|
16
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
17
|
+
* @license MIT
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
/*!
|
|
21
|
+
* jQuery JavaScript Library v3.7.1
|
|
22
|
+
* https://jquery.com/
|
|
23
|
+
*
|
|
24
|
+
* Copyright OpenJS Foundation and other contributors
|
|
25
|
+
* Released under the MIT license
|
|
26
|
+
* https://jquery.org/license
|
|
27
|
+
*
|
|
28
|
+
* Date: 2023-08-28T13:37Z
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
/*!
|
|
32
|
+
* jsUri
|
|
33
|
+
* https://github.com/derek-watson/jsUri
|
|
34
|
+
*
|
|
35
|
+
* Copyright 2013, Derek Watson
|
|
36
|
+
* Released under the MIT license.
|
|
37
|
+
*
|
|
38
|
+
* Includes parseUri regular expressions
|
|
39
|
+
* http://blog.stevenlevithan.com/archives/parseuri
|
|
40
|
+
* Copyright 2007, Steven Levithan
|
|
41
|
+
* Released under the MIT license.
|
|
42
|
+
*/
|
|
43
|
+
|
|
44
|
+
/*! @license DOMPurify 3.3.0 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.3.0/LICENSE */
|
|
45
|
+
|
|
46
|
+
/*! DataTables 2.3.5
|
|
47
|
+
* © SpryMedia Ltd - datatables.net/license
|
|
48
|
+
*/
|
|
49
|
+
|
|
50
|
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
51
|
+
|
|
52
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
|
|
53
|
+
|
|
54
|
+
/**!
|
|
55
|
+
* Sortable 1.15.6
|
|
56
|
+
* @author RubaXa <trash@rubaxa.org>
|
|
57
|
+
* @author owenm <owen23355@gmail.com>
|
|
58
|
+
* @license MIT
|
|
59
|
+
*/
|