@matdata/yasr 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.
Files changed (56) hide show
  1. package/CHANGELOG.md +150 -0
  2. package/build/ts/src/bindingsToCsv.d.ts +2 -0
  3. package/build/ts/src/defaults.d.ts +2 -0
  4. package/build/ts/src/helpers/addCSS.d.ts +1 -0
  5. package/build/ts/src/helpers/addScript.d.ts +1 -0
  6. package/build/ts/src/helpers/index.d.ts +3 -0
  7. package/build/ts/src/helpers/sanitize.d.ts +2 -0
  8. package/build/ts/src/imgs.d.ts +4 -0
  9. package/build/ts/src/index.d.ts +130 -0
  10. package/build/ts/src/parsers/csv.d.ts +2 -0
  11. package/build/ts/src/parsers/index.d.ts +68 -0
  12. package/build/ts/src/parsers/json.d.ts +2 -0
  13. package/build/ts/src/parsers/tsv.d.ts +2 -0
  14. package/build/ts/src/parsers/turtleFamily.d.ts +4 -0
  15. package/build/ts/src/parsers/xml.d.ts +2 -0
  16. package/build/ts/src/plugins/boolean/index.d.ts +13 -0
  17. package/build/ts/src/plugins/error/index.d.ts +13 -0
  18. package/build/ts/src/plugins/index.d.ts +19 -0
  19. package/build/ts/src/plugins/response/index.d.ts +28 -0
  20. package/build/ts/src/plugins/table/index.d.ts +49 -0
  21. package/build/yasr.html +32 -0
  22. package/build/yasr.min.css +2 -0
  23. package/build/yasr.min.css.map +1 -0
  24. package/build/yasr.min.js +3 -0
  25. package/build/yasr.min.js.LICENSE.txt +34 -0
  26. package/build/yasr.min.js.map +1 -0
  27. package/package.json +56 -0
  28. package/src/bin/takeScreenshot.js +373 -0
  29. package/src/bindingsToCsv.ts +18 -0
  30. package/src/defaults.ts +28 -0
  31. package/src/helpers/addCSS.ts +7 -0
  32. package/src/helpers/addScript.ts +12 -0
  33. package/src/helpers/index.ts +3 -0
  34. package/src/helpers/sanitize.ts +11 -0
  35. package/src/imgs.ts +7 -0
  36. package/src/index.ts +688 -0
  37. package/src/jquery/extendJquery.js +1 -0
  38. package/src/jquery/tableToCsv.js +88 -0
  39. package/src/main.scss +229 -0
  40. package/src/parsers/csv.ts +30 -0
  41. package/src/parsers/index.ts +311 -0
  42. package/src/parsers/json.ts +22 -0
  43. package/src/parsers/tsv.ts +43 -0
  44. package/src/parsers/turtleFamily.ts +60 -0
  45. package/src/parsers/xml.ts +79 -0
  46. package/src/plugins/boolean/index.scss +11 -0
  47. package/src/plugins/boolean/index.ts +42 -0
  48. package/src/plugins/error/index.scss +57 -0
  49. package/src/plugins/error/index.ts +124 -0
  50. package/src/plugins/index.ts +24 -0
  51. package/src/plugins/response/index.scss +63 -0
  52. package/src/plugins/response/index.ts +170 -0
  53. package/src/plugins/table/index.scss +154 -0
  54. package/src/plugins/table/index.ts +437 -0
  55. package/src/scss/global.scss +10 -0
  56. package/src/scss/variables.scss +2 -0
@@ -0,0 +1,34 @@
1
+ /* @license
2
+ Papa Parse
3
+ v5.5.3
4
+ https://github.com/mholt/PapaParse
5
+ License: MIT
6
+ */
7
+
8
+ /*!
9
+ * The buffer module from node.js, for the browser.
10
+ *
11
+ * @author Feross Aboukhadijeh <https://feross.org>
12
+ * @license MIT
13
+ */
14
+
15
+ /*!
16
+ * jQuery JavaScript Library v3.7.1
17
+ * https://jquery.com/
18
+ *
19
+ * Copyright OpenJS Foundation and other contributors
20
+ * Released under the MIT license
21
+ * https://jquery.org/license
22
+ *
23
+ * Date: 2023-08-28T13:37Z
24
+ */
25
+
26
+ /*! @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 */
27
+
28
+ /*! DataTables 2.3.5
29
+ * © SpryMedia Ltd - datatables.net/license
30
+ */
31
+
32
+ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
33
+
34
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */