@aui.io/apollo 0.1.4 → 0.1.5

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 (299) hide show
  1. package/node_modules/@aui.io/apollo-cli/node_modules/commander/LICENSE +22 -0
  2. package/node_modules/@aui.io/apollo-cli/node_modules/commander/Readme.md +1176 -0
  3. package/node_modules/@aui.io/apollo-cli/node_modules/commander/esm.mjs +16 -0
  4. package/node_modules/@aui.io/apollo-cli/node_modules/commander/index.js +24 -0
  5. package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/argument.js +150 -0
  6. package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/command.js +2777 -0
  7. package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/error.js +39 -0
  8. package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/help.js +747 -0
  9. package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/option.js +380 -0
  10. package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/suggestSimilar.js +101 -0
  11. package/node_modules/@aui.io/apollo-cli/node_modules/commander/package-support.json +19 -0
  12. package/node_modules/@aui.io/apollo-cli/node_modules/commander/package.json +82 -0
  13. package/node_modules/@aui.io/apollo-cli/node_modules/commander/typings/esm.d.mts +3 -0
  14. package/node_modules/@aui.io/apollo-cli/node_modules/commander/typings/index.d.ts +1113 -0
  15. package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/LICENSE +15 -0
  16. package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/README.md +21 -0
  17. package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/package.json +25 -0
  18. package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/picocolors.browser.js +4 -0
  19. package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/picocolors.d.ts +5 -0
  20. package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/picocolors.js +75 -0
  21. package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/types.d.ts +51 -0
  22. package/node_modules/@aui.io/apollo-cli/package.json +3 -4
  23. package/node_modules/@aui.io/apollo-core/node_modules/picocolors/LICENSE +15 -0
  24. package/node_modules/@aui.io/apollo-core/node_modules/picocolors/README.md +21 -0
  25. package/node_modules/@aui.io/apollo-core/node_modules/picocolors/package.json +25 -0
  26. package/node_modules/@aui.io/apollo-core/node_modules/picocolors/picocolors.browser.js +4 -0
  27. package/node_modules/@aui.io/apollo-core/node_modules/picocolors/picocolors.d.ts +5 -0
  28. package/node_modules/@aui.io/apollo-core/node_modules/picocolors/picocolors.js +75 -0
  29. package/node_modules/@aui.io/apollo-core/node_modules/picocolors/types.d.ts +51 -0
  30. package/node_modules/@aui.io/apollo-core/node_modules/yaml/LICENSE +13 -0
  31. package/node_modules/@aui.io/apollo-core/node_modules/yaml/README.md +172 -0
  32. package/node_modules/@aui.io/apollo-core/node_modules/yaml/bin.mjs +11 -0
  33. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
  34. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
  35. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
  36. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
  37. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/composer.js +219 -0
  38. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
  39. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
  40. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
  41. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
  42. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
  43. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +225 -0
  44. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
  45. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
  46. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
  47. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
  48. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
  49. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/Document.js +335 -0
  50. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
  51. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
  52. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
  53. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/directives.js +176 -0
  54. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/errors.js +57 -0
  55. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/index.js +17 -0
  56. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/log.js +11 -0
  57. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Alias.js +116 -0
  58. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
  59. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
  60. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
  61. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
  62. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
  63. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
  64. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
  65. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
  66. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
  67. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
  68. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
  69. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
  70. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/cst.js +98 -0
  71. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/lexer.js +721 -0
  72. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
  73. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/parser.js +975 -0
  74. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/public-api.js +102 -0
  75. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
  76. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
  77. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
  78. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
  79. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
  80. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
  81. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
  82. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
  83. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
  84. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
  85. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/tags.js +96 -0
  86. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
  87. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
  88. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
  89. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
  90. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +67 -0
  91. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
  92. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
  93. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
  94. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
  95. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
  96. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
  97. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
  98. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
  99. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
  100. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
  101. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +25 -0
  102. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
  103. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
  104. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/util.js +11 -0
  105. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/visit.js +233 -0
  106. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/index.js +5 -0
  107. package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/package.json +3 -0
  108. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/cli.d.ts +8 -0
  109. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/cli.mjs +201 -0
  110. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
  111. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-collection.js +90 -0
  112. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
  113. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-doc.js +45 -0
  114. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
  115. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-node.js +112 -0
  116. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
  117. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
  118. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/composer.d.ts +63 -0
  119. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/composer.js +224 -0
  120. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
  121. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
  122. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
  123. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
  124. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
  125. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
  126. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
  127. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-end.js +39 -0
  128. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
  129. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
  130. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
  131. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-flow-scalar.js +227 -0
  132. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
  133. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-props.js +148 -0
  134. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
  135. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
  136. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
  137. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
  138. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
  139. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
  140. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
  141. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
  142. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/Document.d.ts +141 -0
  143. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/Document.js +337 -0
  144. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
  145. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/anchors.js +76 -0
  146. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
  147. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/applyReviver.js +57 -0
  148. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
  149. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/createNode.js +90 -0
  150. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/directives.d.ts +49 -0
  151. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/directives.js +178 -0
  152. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/errors.d.ts +21 -0
  153. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/errors.js +62 -0
  154. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/index.d.ts +25 -0
  155. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/index.js +50 -0
  156. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/log.d.ts +3 -0
  157. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/log.js +19 -0
  158. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
  159. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Alias.js +118 -0
  160. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
  161. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Collection.js +151 -0
  162. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
  163. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Node.js +40 -0
  164. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
  165. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Pair.js +39 -0
  166. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Scalar.d.ts +47 -0
  167. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Scalar.js +27 -0
  168. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
  169. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
  170. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
  171. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
  172. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
  173. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
  174. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
  175. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/identity.js +53 -0
  176. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
  177. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/toJS.js +39 -0
  178. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/options.d.ts +350 -0
  179. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
  180. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
  181. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
  182. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
  183. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
  184. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-visit.js +99 -0
  185. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst.d.ts +109 -0
  186. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst.js +112 -0
  187. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
  188. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/lexer.js +723 -0
  189. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
  190. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/line-counter.js +41 -0
  191. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/parser.d.ts +84 -0
  192. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/parser.js +980 -0
  193. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/public-api.d.ts +44 -0
  194. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/public-api.js +107 -0
  195. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
  196. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/Schema.js +39 -0
  197. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
  198. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/map.js +19 -0
  199. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
  200. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/null.js +17 -0
  201. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
  202. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/seq.js +19 -0
  203. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
  204. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/string.js +16 -0
  205. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
  206. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/bool.js +21 -0
  207. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
  208. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/float.js +47 -0
  209. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
  210. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/int.js +42 -0
  211. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
  212. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/schema.js +25 -0
  213. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
  214. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/json/schema.js +64 -0
  215. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
  216. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/tags.d.ts +48 -0
  217. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/tags.js +99 -0
  218. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/types.d.ts +92 -0
  219. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
  220. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
  221. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
  222. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
  223. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
  224. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
  225. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
  226. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
  227. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
  228. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/merge.js +71 -0
  229. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
  230. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
  231. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
  232. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
  233. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
  234. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
  235. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
  236. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
  237. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
  238. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
  239. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
  240. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
  241. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
  242. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringify.js +132 -0
  243. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
  244. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
  245. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
  246. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
  247. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
  248. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
  249. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
  250. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyNumber.js +27 -0
  251. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
  252. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
  253. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
  254. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
  255. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/test-events.d.ts +4 -0
  256. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/test-events.js +134 -0
  257. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/util.d.ts +16 -0
  258. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/util.js +28 -0
  259. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/visit.d.ts +102 -0
  260. package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/visit.js +236 -0
  261. package/node_modules/@aui.io/apollo-core/node_modules/yaml/package.json +97 -0
  262. package/node_modules/@aui.io/apollo-core/node_modules/yaml/util.js +2 -0
  263. package/node_modules/@aui.io/apollo-core/package.json +1 -2
  264. package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/LICENSE +15 -0
  265. package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/README.md +21 -0
  266. package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/package.json +25 -0
  267. package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/picocolors.browser.js +4 -0
  268. package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/picocolors.d.ts +5 -0
  269. package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/picocolors.js +75 -0
  270. package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/types.d.ts +51 -0
  271. package/node_modules/@aui.io/apollo-tui/node_modules/react/LICENSE +21 -0
  272. package/node_modules/@aui.io/apollo-tui/node_modules/react/README.md +37 -0
  273. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
  274. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
  275. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
  276. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
  277. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
  278. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
  279. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
  280. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
  281. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
  282. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
  283. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
  284. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
  285. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
  286. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.development.js +1284 -0
  287. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.production.js +542 -0
  288. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.react-server.development.js +848 -0
  289. package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.react-server.production.js +423 -0
  290. package/node_modules/@aui.io/apollo-tui/node_modules/react/compiler-runtime.js +14 -0
  291. package/node_modules/@aui.io/apollo-tui/node_modules/react/index.js +7 -0
  292. package/node_modules/@aui.io/apollo-tui/node_modules/react/jsx-dev-runtime.js +7 -0
  293. package/node_modules/@aui.io/apollo-tui/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
  294. package/node_modules/@aui.io/apollo-tui/node_modules/react/jsx-runtime.js +7 -0
  295. package/node_modules/@aui.io/apollo-tui/node_modules/react/jsx-runtime.react-server.js +7 -0
  296. package/node_modules/@aui.io/apollo-tui/node_modules/react/package.json +51 -0
  297. package/node_modules/@aui.io/apollo-tui/node_modules/react/react.react-server.js +7 -0
  298. package/node_modules/@aui.io/apollo-tui/package.json +2 -3
  299. package/package.json +10 -4
@@ -0,0 +1,370 @@
1
+ /**
2
+ * @license React
3
+ * react-jsx-dev-runtime.react-server.development.js
4
+ *
5
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */
10
+
11
+ "use strict";
12
+ "production" !== process.env.NODE_ENV &&
13
+ (function () {
14
+ function getComponentNameFromType(type) {
15
+ if (null == type) return null;
16
+ if ("function" === typeof type)
17
+ return type.$$typeof === REACT_CLIENT_REFERENCE
18
+ ? null
19
+ : type.displayName || type.name || null;
20
+ if ("string" === typeof type) return type;
21
+ switch (type) {
22
+ case REACT_FRAGMENT_TYPE:
23
+ return "Fragment";
24
+ case REACT_PROFILER_TYPE:
25
+ return "Profiler";
26
+ case REACT_STRICT_MODE_TYPE:
27
+ return "StrictMode";
28
+ case REACT_SUSPENSE_TYPE:
29
+ return "Suspense";
30
+ case REACT_SUSPENSE_LIST_TYPE:
31
+ return "SuspenseList";
32
+ case REACT_ACTIVITY_TYPE:
33
+ return "Activity";
34
+ }
35
+ if ("object" === typeof type)
36
+ switch (
37
+ ("number" === typeof type.tag &&
38
+ console.error(
39
+ "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
40
+ ),
41
+ type.$$typeof)
42
+ ) {
43
+ case REACT_PORTAL_TYPE:
44
+ return "Portal";
45
+ case REACT_CONTEXT_TYPE:
46
+ return type.displayName || "Context";
47
+ case REACT_CONSUMER_TYPE:
48
+ return (type._context.displayName || "Context") + ".Consumer";
49
+ case REACT_FORWARD_REF_TYPE:
50
+ var innerType = type.render;
51
+ type = type.displayName;
52
+ type ||
53
+ ((type = innerType.displayName || innerType.name || ""),
54
+ (type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"));
55
+ return type;
56
+ case REACT_MEMO_TYPE:
57
+ return (
58
+ (innerType = type.displayName || null),
59
+ null !== innerType
60
+ ? innerType
61
+ : getComponentNameFromType(type.type) || "Memo"
62
+ );
63
+ case REACT_LAZY_TYPE:
64
+ innerType = type._payload;
65
+ type = type._init;
66
+ try {
67
+ return getComponentNameFromType(type(innerType));
68
+ } catch (x) {}
69
+ }
70
+ return null;
71
+ }
72
+ function testStringCoercion(value) {
73
+ return "" + value;
74
+ }
75
+ function checkKeyStringCoercion(value) {
76
+ try {
77
+ testStringCoercion(value);
78
+ var JSCompiler_inline_result = !1;
79
+ } catch (e) {
80
+ JSCompiler_inline_result = !0;
81
+ }
82
+ if (JSCompiler_inline_result) {
83
+ JSCompiler_inline_result = console;
84
+ var JSCompiler_temp_const = JSCompiler_inline_result.error;
85
+ var JSCompiler_inline_result$jscomp$0 =
86
+ ("function" === typeof Symbol &&
87
+ Symbol.toStringTag &&
88
+ value[Symbol.toStringTag]) ||
89
+ value.constructor.name ||
90
+ "Object";
91
+ JSCompiler_temp_const.call(
92
+ JSCompiler_inline_result,
93
+ "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
94
+ JSCompiler_inline_result$jscomp$0
95
+ );
96
+ return testStringCoercion(value);
97
+ }
98
+ }
99
+ function getTaskName(type) {
100
+ if (type === REACT_FRAGMENT_TYPE) return "<>";
101
+ if (
102
+ "object" === typeof type &&
103
+ null !== type &&
104
+ type.$$typeof === REACT_LAZY_TYPE
105
+ )
106
+ return "<...>";
107
+ try {
108
+ var name = getComponentNameFromType(type);
109
+ return name ? "<" + name + ">" : "<...>";
110
+ } catch (x) {
111
+ return "<...>";
112
+ }
113
+ }
114
+ function getOwner() {
115
+ var dispatcher = ReactSharedInternalsServer.A;
116
+ return null === dispatcher ? null : dispatcher.getOwner();
117
+ }
118
+ function UnknownOwner() {
119
+ return Error("react-stack-top-frame");
120
+ }
121
+ function hasValidKey(config) {
122
+ if (hasOwnProperty.call(config, "key")) {
123
+ var getter = Object.getOwnPropertyDescriptor(config, "key").get;
124
+ if (getter && getter.isReactWarning) return !1;
125
+ }
126
+ return void 0 !== config.key;
127
+ }
128
+ function defineKeyPropWarningGetter(props, displayName) {
129
+ function warnAboutAccessingKey() {
130
+ specialPropKeyWarningShown ||
131
+ ((specialPropKeyWarningShown = !0),
132
+ console.error(
133
+ "%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
134
+ displayName
135
+ ));
136
+ }
137
+ warnAboutAccessingKey.isReactWarning = !0;
138
+ Object.defineProperty(props, "key", {
139
+ get: warnAboutAccessingKey,
140
+ configurable: !0
141
+ });
142
+ }
143
+ function elementRefGetterWithDeprecationWarning() {
144
+ var componentName = getComponentNameFromType(this.type);
145
+ didWarnAboutElementRef[componentName] ||
146
+ ((didWarnAboutElementRef[componentName] = !0),
147
+ console.error(
148
+ "Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
149
+ ));
150
+ componentName = this.props.ref;
151
+ return void 0 !== componentName ? componentName : null;
152
+ }
153
+ function ReactElement(type, key, props, owner, debugStack, debugTask) {
154
+ var refProp = props.ref;
155
+ type = {
156
+ $$typeof: REACT_ELEMENT_TYPE,
157
+ type: type,
158
+ key: key,
159
+ props: props,
160
+ _owner: owner
161
+ };
162
+ null !== (void 0 !== refProp ? refProp : null)
163
+ ? Object.defineProperty(type, "ref", {
164
+ enumerable: !1,
165
+ get: elementRefGetterWithDeprecationWarning
166
+ })
167
+ : Object.defineProperty(type, "ref", { enumerable: !1, value: null });
168
+ type._store = {};
169
+ Object.defineProperty(type._store, "validated", {
170
+ configurable: !1,
171
+ enumerable: !1,
172
+ writable: !0,
173
+ value: 0
174
+ });
175
+ Object.defineProperty(type, "_debugInfo", {
176
+ configurable: !1,
177
+ enumerable: !1,
178
+ writable: !0,
179
+ value: null
180
+ });
181
+ Object.defineProperty(type, "_debugStack", {
182
+ configurable: !1,
183
+ enumerable: !1,
184
+ writable: !0,
185
+ value: debugStack
186
+ });
187
+ Object.defineProperty(type, "_debugTask", {
188
+ configurable: !1,
189
+ enumerable: !1,
190
+ writable: !0,
191
+ value: debugTask
192
+ });
193
+ Object.freeze && (Object.freeze(type.props), Object.freeze(type));
194
+ return type;
195
+ }
196
+ function jsxDEVImpl(
197
+ type,
198
+ config,
199
+ maybeKey,
200
+ isStaticChildren,
201
+ debugStack,
202
+ debugTask
203
+ ) {
204
+ var children = config.children;
205
+ if (void 0 !== children)
206
+ if (isStaticChildren)
207
+ if (isArrayImpl(children)) {
208
+ for (
209
+ isStaticChildren = 0;
210
+ isStaticChildren < children.length;
211
+ isStaticChildren++
212
+ )
213
+ validateChildKeys(children[isStaticChildren]);
214
+ Object.freeze && Object.freeze(children);
215
+ } else
216
+ console.error(
217
+ "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
218
+ );
219
+ else validateChildKeys(children);
220
+ if (hasOwnProperty.call(config, "key")) {
221
+ children = getComponentNameFromType(type);
222
+ var keys = Object.keys(config).filter(function (k) {
223
+ return "key" !== k;
224
+ });
225
+ isStaticChildren =
226
+ 0 < keys.length
227
+ ? "{key: someKey, " + keys.join(": ..., ") + ": ...}"
228
+ : "{key: someKey}";
229
+ didWarnAboutKeySpread[children + isStaticChildren] ||
230
+ ((keys =
231
+ 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}"),
232
+ console.error(
233
+ 'A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />',
234
+ isStaticChildren,
235
+ children,
236
+ keys,
237
+ children
238
+ ),
239
+ (didWarnAboutKeySpread[children + isStaticChildren] = !0));
240
+ }
241
+ children = null;
242
+ void 0 !== maybeKey &&
243
+ (checkKeyStringCoercion(maybeKey), (children = "" + maybeKey));
244
+ hasValidKey(config) &&
245
+ (checkKeyStringCoercion(config.key), (children = "" + config.key));
246
+ if ("key" in config) {
247
+ maybeKey = {};
248
+ for (var propName in config)
249
+ "key" !== propName && (maybeKey[propName] = config[propName]);
250
+ } else maybeKey = config;
251
+ children &&
252
+ defineKeyPropWarningGetter(
253
+ maybeKey,
254
+ "function" === typeof type
255
+ ? type.displayName || type.name || "Unknown"
256
+ : type
257
+ );
258
+ return ReactElement(
259
+ type,
260
+ children,
261
+ maybeKey,
262
+ getOwner(),
263
+ debugStack,
264
+ debugTask
265
+ );
266
+ }
267
+ function validateChildKeys(node) {
268
+ isValidElement(node)
269
+ ? node._store && (node._store.validated = 1)
270
+ : "object" === typeof node &&
271
+ null !== node &&
272
+ node.$$typeof === REACT_LAZY_TYPE &&
273
+ ("fulfilled" === node._payload.status
274
+ ? isValidElement(node._payload.value) &&
275
+ node._payload.value._store &&
276
+ (node._payload.value._store.validated = 1)
277
+ : node._store && (node._store.validated = 1));
278
+ }
279
+ function isValidElement(object) {
280
+ return (
281
+ "object" === typeof object &&
282
+ null !== object &&
283
+ object.$$typeof === REACT_ELEMENT_TYPE
284
+ );
285
+ }
286
+ var React = require("react"),
287
+ REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
288
+ REACT_PORTAL_TYPE = Symbol.for("react.portal"),
289
+ REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
290
+ REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
291
+ REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
292
+ REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
293
+ REACT_CONTEXT_TYPE = Symbol.for("react.context"),
294
+ REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
295
+ REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
296
+ REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"),
297
+ REACT_MEMO_TYPE = Symbol.for("react.memo"),
298
+ REACT_LAZY_TYPE = Symbol.for("react.lazy"),
299
+ REACT_ACTIVITY_TYPE = Symbol.for("react.activity"),
300
+ REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
301
+ ReactSharedInternalsServer =
302
+ React.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
303
+ if (!ReactSharedInternalsServer)
304
+ throw Error(
305
+ 'The "react" package in this environment is not configured correctly. The "react-server" condition must be enabled in any environment that runs React Server Components.'
306
+ );
307
+ var hasOwnProperty = Object.prototype.hasOwnProperty,
308
+ isArrayImpl = Array.isArray,
309
+ createTask = console.createTask
310
+ ? console.createTask
311
+ : function () {
312
+ return null;
313
+ };
314
+ React = {
315
+ react_stack_bottom_frame: function (callStackForError) {
316
+ return callStackForError();
317
+ }
318
+ };
319
+ var specialPropKeyWarningShown;
320
+ var didWarnAboutElementRef = {};
321
+ var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(
322
+ React,
323
+ UnknownOwner
324
+ )();
325
+ var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
326
+ var didWarnAboutKeySpread = {};
327
+ exports.Fragment = REACT_FRAGMENT_TYPE;
328
+ exports.jsx = function (type, config, maybeKey) {
329
+ var trackActualOwner =
330
+ 1e4 > ReactSharedInternalsServer.recentlyCreatedOwnerStacks++;
331
+ return jsxDEVImpl(
332
+ type,
333
+ config,
334
+ maybeKey,
335
+ !1,
336
+ trackActualOwner
337
+ ? Error("react-stack-top-frame")
338
+ : unknownOwnerDebugStack,
339
+ trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
340
+ );
341
+ };
342
+ exports.jsxDEV = function (type, config, maybeKey, isStaticChildren) {
343
+ var trackActualOwner =
344
+ 1e4 > ReactSharedInternalsServer.recentlyCreatedOwnerStacks++;
345
+ return jsxDEVImpl(
346
+ type,
347
+ config,
348
+ maybeKey,
349
+ isStaticChildren,
350
+ trackActualOwner
351
+ ? Error("react-stack-top-frame")
352
+ : unknownOwnerDebugStack,
353
+ trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
354
+ );
355
+ };
356
+ exports.jsxs = function (type, config, maybeKey) {
357
+ var trackActualOwner =
358
+ 1e4 > ReactSharedInternalsServer.recentlyCreatedOwnerStacks++;
359
+ return jsxDEVImpl(
360
+ type,
361
+ config,
362
+ maybeKey,
363
+ !0,
364
+ trackActualOwner
365
+ ? Error("react-stack-top-frame")
366
+ : unknownOwnerDebugStack,
367
+ trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
368
+ );
369
+ };
370
+ })();
@@ -0,0 +1,40 @@
1
+ /**
2
+ * @license React
3
+ * react-jsx-dev-runtime.react-server.production.js
4
+ *
5
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */
10
+
11
+ "use strict";
12
+ var React = require("react"),
13
+ REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
14
+ REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
15
+ if (!React.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE)
16
+ throw Error(
17
+ 'The "react" package in this environment is not configured correctly. The "react-server" condition must be enabled in any environment that runs React Server Components.'
18
+ );
19
+ function jsxProd(type, config, maybeKey) {
20
+ var key = null;
21
+ void 0 !== maybeKey && (key = "" + maybeKey);
22
+ void 0 !== config.key && (key = "" + config.key);
23
+ if ("key" in config) {
24
+ maybeKey = {};
25
+ for (var propName in config)
26
+ "key" !== propName && (maybeKey[propName] = config[propName]);
27
+ } else maybeKey = config;
28
+ config = maybeKey.ref;
29
+ return {
30
+ $$typeof: REACT_ELEMENT_TYPE,
31
+ type: type,
32
+ key: key,
33
+ ref: void 0 !== config ? config : null,
34
+ props: maybeKey
35
+ };
36
+ }
37
+ exports.Fragment = REACT_FRAGMENT_TYPE;
38
+ exports.jsx = jsxProd;
39
+ exports.jsxDEV = void 0;
40
+ exports.jsxs = jsxProd;