@asyncapi/react-component 1.0.0-next.48 → 1.0.0-next.49

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 (127) hide show
  1. package/browser/index.js +32 -27
  2. package/browser/index.js.LICENSE.txt +88 -0
  3. package/browser/standalone/index.js +32 -51
  4. package/browser/standalone/index.js.LICENSE.txt +112 -0
  5. package/browser/standalone/without-parser.js +14 -41
  6. package/browser/standalone/without-parser.js.LICENSE.txt +110 -0
  7. package/browser/without-parser.js +14 -12
  8. package/browser/without-parser.js.LICENSE.txt +86 -0
  9. package/lib/cjs/components/Schema.js +40 -57
  10. package/lib/cjs/components/Schema.js.map +1 -1
  11. package/lib/cjs/components/Tag.js.map +1 -1
  12. package/lib/cjs/components/Tags.js.map +1 -1
  13. package/lib/cjs/containers/AsyncApi/AsyncApi.js.map +1 -1
  14. package/lib/cjs/containers/AsyncApi/Layout.js.map +1 -1
  15. package/lib/cjs/containers/AsyncApi/Standalone.js.map +1 -1
  16. package/lib/cjs/containers/Info/Info.js +6 -6
  17. package/lib/cjs/containers/Info/Info.js.map +1 -1
  18. package/lib/cjs/containers/Messages/Message.js +3 -3
  19. package/lib/cjs/containers/Messages/Message.js.map +1 -1
  20. package/lib/cjs/containers/Messages/MessageExample.js.map +1 -1
  21. package/lib/cjs/containers/Messages/Messages.js +1 -1
  22. package/lib/cjs/containers/Messages/Messages.js.map +1 -1
  23. package/lib/cjs/containers/Operations/Operation.js +9 -7
  24. package/lib/cjs/containers/Operations/Operation.js.map +1 -1
  25. package/lib/cjs/containers/Operations/Operations.js +10 -10
  26. package/lib/cjs/containers/Operations/Operations.js.map +1 -1
  27. package/lib/cjs/containers/Schemas/Schema.js.map +1 -1
  28. package/lib/cjs/containers/Schemas/Schemas.js +1 -1
  29. package/lib/cjs/containers/Schemas/Schemas.js.map +1 -1
  30. package/lib/cjs/containers/Servers/Security.js +44 -32
  31. package/lib/cjs/containers/Servers/Security.js.map +1 -1
  32. package/lib/cjs/containers/Servers/Server.js +2 -2
  33. package/lib/cjs/containers/Servers/Server.js.map +1 -1
  34. package/lib/cjs/containers/Sidebar/Sidebar.js +42 -31
  35. package/lib/cjs/containers/Sidebar/Sidebar.js.map +1 -1
  36. package/lib/cjs/contexts/useSpec.js.map +1 -1
  37. package/lib/cjs/helpers/message.js +16 -14
  38. package/lib/cjs/helpers/message.js.map +1 -1
  39. package/lib/cjs/helpers/parser.js +14 -17
  40. package/lib/cjs/helpers/parser.js.map +1 -1
  41. package/lib/cjs/helpers/schema.js +18 -24
  42. package/lib/cjs/helpers/schema.js.map +1 -1
  43. package/lib/cjs/helpers/server.js.map +1 -1
  44. package/lib/cjs/helpers/specification.js +21 -26
  45. package/lib/cjs/helpers/specification.js.map +1 -1
  46. package/lib/cjs/types.js.map +1 -1
  47. package/lib/esm/components/Schema.js +40 -57
  48. package/lib/esm/components/Schema.js.map +1 -1
  49. package/lib/esm/components/Tag.js.map +1 -1
  50. package/lib/esm/components/Tags.js.map +1 -1
  51. package/lib/esm/containers/AsyncApi/AsyncApi.js.map +1 -1
  52. package/lib/esm/containers/AsyncApi/Layout.js.map +1 -1
  53. package/lib/esm/containers/AsyncApi/Standalone.js.map +1 -1
  54. package/lib/esm/containers/Info/Info.js +6 -6
  55. package/lib/esm/containers/Info/Info.js.map +1 -1
  56. package/lib/esm/containers/Messages/Message.js +3 -3
  57. package/lib/esm/containers/Messages/Message.js.map +1 -1
  58. package/lib/esm/containers/Messages/MessageExample.js.map +1 -1
  59. package/lib/esm/containers/Messages/Messages.js +1 -1
  60. package/lib/esm/containers/Messages/Messages.js.map +1 -1
  61. package/lib/esm/containers/Operations/Operation.js +9 -7
  62. package/lib/esm/containers/Operations/Operation.js.map +1 -1
  63. package/lib/esm/containers/Operations/Operations.js +10 -10
  64. package/lib/esm/containers/Operations/Operations.js.map +1 -1
  65. package/lib/esm/containers/Schemas/Schema.js.map +1 -1
  66. package/lib/esm/containers/Schemas/Schemas.js +1 -1
  67. package/lib/esm/containers/Schemas/Schemas.js.map +1 -1
  68. package/lib/esm/containers/Servers/Security.js +44 -32
  69. package/lib/esm/containers/Servers/Security.js.map +1 -1
  70. package/lib/esm/containers/Servers/Server.js +2 -2
  71. package/lib/esm/containers/Servers/Server.js.map +1 -1
  72. package/lib/esm/containers/Sidebar/Sidebar.js +42 -31
  73. package/lib/esm/containers/Sidebar/Sidebar.js.map +1 -1
  74. package/lib/esm/contexts/useSpec.js.map +1 -1
  75. package/lib/esm/helpers/message.js +16 -14
  76. package/lib/esm/helpers/message.js.map +1 -1
  77. package/lib/esm/helpers/parser.js +15 -15
  78. package/lib/esm/helpers/parser.js.map +1 -1
  79. package/lib/esm/helpers/schema.js +14 -17
  80. package/lib/esm/helpers/schema.js.map +1 -1
  81. package/lib/esm/helpers/server.js.map +1 -1
  82. package/lib/esm/helpers/specification.js +21 -23
  83. package/lib/esm/helpers/specification.js.map +1 -1
  84. package/lib/esm/types.js.map +1 -1
  85. package/lib/types/components/Schema.d.ts +2 -2
  86. package/lib/types/components/Schema.d.ts.map +1 -1
  87. package/lib/types/components/Tag.d.ts +2 -2
  88. package/lib/types/components/Tag.d.ts.map +1 -1
  89. package/lib/types/components/Tags.d.ts +2 -2
  90. package/lib/types/components/Tags.d.ts.map +1 -1
  91. package/lib/types/containers/AsyncApi/AsyncApi.d.ts +2 -2
  92. package/lib/types/containers/AsyncApi/AsyncApi.d.ts.map +1 -1
  93. package/lib/types/containers/AsyncApi/Layout.d.ts +2 -2
  94. package/lib/types/containers/AsyncApi/Layout.d.ts.map +1 -1
  95. package/lib/types/containers/AsyncApi/Standalone.d.ts +2 -2
  96. package/lib/types/containers/AsyncApi/Standalone.d.ts.map +1 -1
  97. package/lib/types/containers/Info/Info.d.ts.map +1 -1
  98. package/lib/types/containers/Messages/Message.d.ts +2 -2
  99. package/lib/types/containers/Messages/Message.d.ts.map +1 -1
  100. package/lib/types/containers/Messages/MessageExample.d.ts +3 -3
  101. package/lib/types/containers/Messages/MessageExample.d.ts.map +1 -1
  102. package/lib/types/containers/Messages/Messages.d.ts.map +1 -1
  103. package/lib/types/containers/Operations/Operation.d.ts +3 -3
  104. package/lib/types/containers/Operations/Operation.d.ts.map +1 -1
  105. package/lib/types/containers/Operations/Operations.d.ts.map +1 -1
  106. package/lib/types/containers/Schemas/Schema.d.ts +2 -2
  107. package/lib/types/containers/Schemas/Schema.d.ts.map +1 -1
  108. package/lib/types/containers/Schemas/Schemas.d.ts.map +1 -1
  109. package/lib/types/containers/Servers/Security.d.ts +2 -2
  110. package/lib/types/containers/Servers/Security.d.ts.map +1 -1
  111. package/lib/types/containers/Servers/Server.d.ts +2 -2
  112. package/lib/types/containers/Servers/Server.d.ts.map +1 -1
  113. package/lib/types/containers/Sidebar/Sidebar.d.ts.map +1 -1
  114. package/lib/types/contexts/useSpec.d.ts +3 -3
  115. package/lib/types/contexts/useSpec.d.ts.map +1 -1
  116. package/lib/types/helpers/message.d.ts +3 -3
  117. package/lib/types/helpers/message.d.ts.map +1 -1
  118. package/lib/types/helpers/parser.d.ts.map +1 -1
  119. package/lib/types/helpers/schema.d.ts +8 -9
  120. package/lib/types/helpers/schema.d.ts.map +1 -1
  121. package/lib/types/helpers/server.d.ts +2 -2
  122. package/lib/types/helpers/server.d.ts.map +1 -1
  123. package/lib/types/helpers/specification.d.ts +5 -5
  124. package/lib/types/helpers/specification.d.ts.map +1 -1
  125. package/lib/types/types.d.ts +4 -4
  126. package/lib/types/types.d.ts.map +1 -1
  127. package/package.json +12 -11
@@ -0,0 +1,88 @@
1
+ /*!
2
+ * The buffer module from node.js, for the browser.
3
+ *
4
+ * @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
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
+ * URI.js - Mutating URLs
17
+ *
18
+ * Version: 1.19.11
19
+ *
20
+ * Author: Rodney Rehm
21
+ * Web: http://medialize.github.io/URI.js/
22
+ *
23
+ * Licensed under
24
+ * MIT License http://www.opensource.org/licenses/mit-license
25
+ *
26
+ */
27
+
28
+ /*!
29
+ * URI.js - Mutating URLs
30
+ * IPv6 Support
31
+ *
32
+ * Version: 1.19.11
33
+ *
34
+ * Author: Rodney Rehm
35
+ * Web: http://medialize.github.io/URI.js/
36
+ *
37
+ * Licensed under
38
+ * MIT License http://www.opensource.org/licenses/mit-license
39
+ *
40
+ */
41
+
42
+ /*!
43
+ * URI.js - Mutating URLs
44
+ * Second Level Domain (SLD) Support
45
+ *
46
+ * Version: 1.19.11
47
+ *
48
+ * Author: Rodney Rehm
49
+ * Web: http://medialize.github.io/URI.js/
50
+ *
51
+ * Licensed under
52
+ * MIT License http://www.opensource.org/licenses/mit-license
53
+ *
54
+ */
55
+
56
+ /*! *****************************************************************************
57
+ Copyright (c) Microsoft Corporation.
58
+
59
+ Permission to use, copy, modify, and/or distribute this software for any
60
+ purpose with or without fee is hereby granted.
61
+
62
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
63
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
64
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
65
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
66
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
67
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
68
+ PERFORMANCE OF THIS SOFTWARE.
69
+ ***************************************************************************** */
70
+
71
+ /*! @license DOMPurify 2.3.6 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.3.6/LICENSE */
72
+
73
+ /*! https://mths.be/punycode v1.4.0 by @mathias */
74
+
75
+ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
76
+
77
+ /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
78
+
79
+ /**
80
+ * @license
81
+ * Lodash <https://lodash.com/>
82
+ * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
83
+ * Released under MIT license <https://lodash.com/license>
84
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
85
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
86
+ */
87
+
88
+ /** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */