@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.
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/LICENSE +22 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/Readme.md +1176 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/esm.mjs +16 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/index.js +24 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/argument.js +150 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/command.js +2777 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/error.js +39 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/help.js +747 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/option.js +380 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/suggestSimilar.js +101 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/package-support.json +19 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/package.json +82 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/typings/esm.d.mts +3 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/typings/index.d.ts +1113 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/LICENSE +15 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/README.md +21 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/package.json +25 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/picocolors.browser.js +4 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/picocolors.d.ts +5 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/picocolors.js +75 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/types.d.ts +51 -0
- package/node_modules/@aui.io/apollo-cli/package.json +3 -4
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/LICENSE +15 -0
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/README.md +21 -0
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/package.json +25 -0
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/picocolors.browser.js +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/picocolors.d.ts +5 -0
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/picocolors.js +75 -0
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/types.d.ts +51 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/LICENSE +13 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/README.md +172 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/bin.mjs +11 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/composer.js +219 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +225 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/Document.js +335 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/directives.js +176 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/errors.js +57 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/index.js +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/log.js +11 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Alias.js +116 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/lexer.js +721 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/parser.js +975 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/public-api.js +102 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/tags.js +96 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +67 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +25 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/util.js +11 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/visit.js +233 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/index.js +5 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/package.json +3 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/cli.d.ts +8 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/cli.mjs +201 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-collection.js +90 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-doc.js +45 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-node.js +112 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/composer.d.ts +63 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/composer.js +224 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-flow-scalar.js +227 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-props.js +148 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/Document.js +337 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/anchors.js +76 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/applyReviver.js +57 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/createNode.js +90 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/directives.js +178 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/errors.d.ts +21 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/errors.js +62 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/index.d.ts +25 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/index.js +50 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/log.d.ts +3 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/log.js +19 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Alias.js +118 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Collection.js +151 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Scalar.d.ts +47 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/options.d.ts +350 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst.d.ts +109 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst.js +112 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/lexer.js +723 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/parser.js +980 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/public-api.d.ts +44 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/public-api.js +107 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/Schema.js +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/tags.d.ts +48 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/tags.js +99 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/types.d.ts +92 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/merge.js +71 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringify.js +132 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyNumber.js +27 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/test-events.js +134 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/util.d.ts +16 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/util.js +28 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/visit.d.ts +102 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/visit.js +236 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/package.json +97 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/util.js +2 -0
- package/node_modules/@aui.io/apollo-core/package.json +1 -2
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/LICENSE +15 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/README.md +21 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/package.json +25 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/picocolors.browser.js +4 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/picocolors.d.ts +5 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/picocolors.js +75 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/types.d.ts +51 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/LICENSE +21 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/README.md +37 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.development.js +1284 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.production.js +542 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.react-server.development.js +848 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.react-server.production.js +423 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/compiler-runtime.js +14 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/index.js +7 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/jsx-dev-runtime.js +7 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/jsx-runtime.js +7 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/jsx-runtime.react-server.js +7 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/package.json +51 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/react.react-server.js +7 -0
- package/node_modules/@aui.io/apollo-tui/package.json +2 -3
- package/package.json +10 -4
package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.react-server.production.js
ADDED
|
@@ -0,0 +1,423 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license React
|
|
3
|
+
* react.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 ReactSharedInternals = { H: null, A: null };
|
|
13
|
+
function formatProdErrorMessage(code) {
|
|
14
|
+
var url = "https://react.dev/errors/" + code;
|
|
15
|
+
if (1 < arguments.length) {
|
|
16
|
+
url += "?args[]=" + encodeURIComponent(arguments[1]);
|
|
17
|
+
for (var i = 2; i < arguments.length; i++)
|
|
18
|
+
url += "&args[]=" + encodeURIComponent(arguments[i]);
|
|
19
|
+
}
|
|
20
|
+
return (
|
|
21
|
+
"Minified React error #" +
|
|
22
|
+
code +
|
|
23
|
+
"; visit " +
|
|
24
|
+
url +
|
|
25
|
+
" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
var isArrayImpl = Array.isArray;
|
|
29
|
+
function noop() {}
|
|
30
|
+
var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
|
|
31
|
+
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
|
32
|
+
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
|
33
|
+
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
|
34
|
+
REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
|
|
35
|
+
REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
|
|
36
|
+
REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
|
|
37
|
+
REACT_MEMO_TYPE = Symbol.for("react.memo"),
|
|
38
|
+
REACT_LAZY_TYPE = Symbol.for("react.lazy"),
|
|
39
|
+
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
|
40
|
+
function getIteratorFn(maybeIterable) {
|
|
41
|
+
if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
|
|
42
|
+
maybeIterable =
|
|
43
|
+
(MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
|
|
44
|
+
maybeIterable["@@iterator"];
|
|
45
|
+
return "function" === typeof maybeIterable ? maybeIterable : null;
|
|
46
|
+
}
|
|
47
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty,
|
|
48
|
+
assign = Object.assign;
|
|
49
|
+
function ReactElement(type, key, props) {
|
|
50
|
+
var refProp = props.ref;
|
|
51
|
+
return {
|
|
52
|
+
$$typeof: REACT_ELEMENT_TYPE,
|
|
53
|
+
type: type,
|
|
54
|
+
key: key,
|
|
55
|
+
ref: void 0 !== refProp ? refProp : null,
|
|
56
|
+
props: props
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
function cloneAndReplaceKey(oldElement, newKey) {
|
|
60
|
+
return ReactElement(oldElement.type, newKey, oldElement.props);
|
|
61
|
+
}
|
|
62
|
+
function isValidElement(object) {
|
|
63
|
+
return (
|
|
64
|
+
"object" === typeof object &&
|
|
65
|
+
null !== object &&
|
|
66
|
+
object.$$typeof === REACT_ELEMENT_TYPE
|
|
67
|
+
);
|
|
68
|
+
}
|
|
69
|
+
function escape(key) {
|
|
70
|
+
var escaperLookup = { "=": "=0", ":": "=2" };
|
|
71
|
+
return (
|
|
72
|
+
"$" +
|
|
73
|
+
key.replace(/[=:]/g, function (match) {
|
|
74
|
+
return escaperLookup[match];
|
|
75
|
+
})
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
var userProvidedKeyEscapeRegex = /\/+/g;
|
|
79
|
+
function getElementKey(element, index) {
|
|
80
|
+
return "object" === typeof element && null !== element && null != element.key
|
|
81
|
+
? escape("" + element.key)
|
|
82
|
+
: index.toString(36);
|
|
83
|
+
}
|
|
84
|
+
function resolveThenable(thenable) {
|
|
85
|
+
switch (thenable.status) {
|
|
86
|
+
case "fulfilled":
|
|
87
|
+
return thenable.value;
|
|
88
|
+
case "rejected":
|
|
89
|
+
throw thenable.reason;
|
|
90
|
+
default:
|
|
91
|
+
switch (
|
|
92
|
+
("string" === typeof thenable.status
|
|
93
|
+
? thenable.then(noop, noop)
|
|
94
|
+
: ((thenable.status = "pending"),
|
|
95
|
+
thenable.then(
|
|
96
|
+
function (fulfilledValue) {
|
|
97
|
+
"pending" === thenable.status &&
|
|
98
|
+
((thenable.status = "fulfilled"),
|
|
99
|
+
(thenable.value = fulfilledValue));
|
|
100
|
+
},
|
|
101
|
+
function (error) {
|
|
102
|
+
"pending" === thenable.status &&
|
|
103
|
+
((thenable.status = "rejected"), (thenable.reason = error));
|
|
104
|
+
}
|
|
105
|
+
)),
|
|
106
|
+
thenable.status)
|
|
107
|
+
) {
|
|
108
|
+
case "fulfilled":
|
|
109
|
+
return thenable.value;
|
|
110
|
+
case "rejected":
|
|
111
|
+
throw thenable.reason;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
throw thenable;
|
|
115
|
+
}
|
|
116
|
+
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
|
117
|
+
var type = typeof children;
|
|
118
|
+
if ("undefined" === type || "boolean" === type) children = null;
|
|
119
|
+
var invokeCallback = !1;
|
|
120
|
+
if (null === children) invokeCallback = !0;
|
|
121
|
+
else
|
|
122
|
+
switch (type) {
|
|
123
|
+
case "bigint":
|
|
124
|
+
case "string":
|
|
125
|
+
case "number":
|
|
126
|
+
invokeCallback = !0;
|
|
127
|
+
break;
|
|
128
|
+
case "object":
|
|
129
|
+
switch (children.$$typeof) {
|
|
130
|
+
case REACT_ELEMENT_TYPE:
|
|
131
|
+
case REACT_PORTAL_TYPE:
|
|
132
|
+
invokeCallback = !0;
|
|
133
|
+
break;
|
|
134
|
+
case REACT_LAZY_TYPE:
|
|
135
|
+
return (
|
|
136
|
+
(invokeCallback = children._init),
|
|
137
|
+
mapIntoArray(
|
|
138
|
+
invokeCallback(children._payload),
|
|
139
|
+
array,
|
|
140
|
+
escapedPrefix,
|
|
141
|
+
nameSoFar,
|
|
142
|
+
callback
|
|
143
|
+
)
|
|
144
|
+
);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
if (invokeCallback)
|
|
148
|
+
return (
|
|
149
|
+
(callback = callback(children)),
|
|
150
|
+
(invokeCallback =
|
|
151
|
+
"" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar),
|
|
152
|
+
isArrayImpl(callback)
|
|
153
|
+
? ((escapedPrefix = ""),
|
|
154
|
+
null != invokeCallback &&
|
|
155
|
+
(escapedPrefix =
|
|
156
|
+
invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"),
|
|
157
|
+
mapIntoArray(callback, array, escapedPrefix, "", function (c) {
|
|
158
|
+
return c;
|
|
159
|
+
}))
|
|
160
|
+
: null != callback &&
|
|
161
|
+
(isValidElement(callback) &&
|
|
162
|
+
(callback = cloneAndReplaceKey(
|
|
163
|
+
callback,
|
|
164
|
+
escapedPrefix +
|
|
165
|
+
(null == callback.key ||
|
|
166
|
+
(children && children.key === callback.key)
|
|
167
|
+
? ""
|
|
168
|
+
: ("" + callback.key).replace(
|
|
169
|
+
userProvidedKeyEscapeRegex,
|
|
170
|
+
"$&/"
|
|
171
|
+
) + "/") +
|
|
172
|
+
invokeCallback
|
|
173
|
+
)),
|
|
174
|
+
array.push(callback)),
|
|
175
|
+
1
|
|
176
|
+
);
|
|
177
|
+
invokeCallback = 0;
|
|
178
|
+
var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":";
|
|
179
|
+
if (isArrayImpl(children))
|
|
180
|
+
for (var i = 0; i < children.length; i++)
|
|
181
|
+
(nameSoFar = children[i]),
|
|
182
|
+
(type = nextNamePrefix + getElementKey(nameSoFar, i)),
|
|
183
|
+
(invokeCallback += mapIntoArray(
|
|
184
|
+
nameSoFar,
|
|
185
|
+
array,
|
|
186
|
+
escapedPrefix,
|
|
187
|
+
type,
|
|
188
|
+
callback
|
|
189
|
+
));
|
|
190
|
+
else if (((i = getIteratorFn(children)), "function" === typeof i))
|
|
191
|
+
for (
|
|
192
|
+
children = i.call(children), i = 0;
|
|
193
|
+
!(nameSoFar = children.next()).done;
|
|
194
|
+
|
|
195
|
+
)
|
|
196
|
+
(nameSoFar = nameSoFar.value),
|
|
197
|
+
(type = nextNamePrefix + getElementKey(nameSoFar, i++)),
|
|
198
|
+
(invokeCallback += mapIntoArray(
|
|
199
|
+
nameSoFar,
|
|
200
|
+
array,
|
|
201
|
+
escapedPrefix,
|
|
202
|
+
type,
|
|
203
|
+
callback
|
|
204
|
+
));
|
|
205
|
+
else if ("object" === type) {
|
|
206
|
+
if ("function" === typeof children.then)
|
|
207
|
+
return mapIntoArray(
|
|
208
|
+
resolveThenable(children),
|
|
209
|
+
array,
|
|
210
|
+
escapedPrefix,
|
|
211
|
+
nameSoFar,
|
|
212
|
+
callback
|
|
213
|
+
);
|
|
214
|
+
array = String(children);
|
|
215
|
+
throw Error(
|
|
216
|
+
formatProdErrorMessage(
|
|
217
|
+
31,
|
|
218
|
+
"[object Object]" === array
|
|
219
|
+
? "object with keys {" + Object.keys(children).join(", ") + "}"
|
|
220
|
+
: array
|
|
221
|
+
)
|
|
222
|
+
);
|
|
223
|
+
}
|
|
224
|
+
return invokeCallback;
|
|
225
|
+
}
|
|
226
|
+
function mapChildren(children, func, context) {
|
|
227
|
+
if (null == children) return children;
|
|
228
|
+
var result = [],
|
|
229
|
+
count = 0;
|
|
230
|
+
mapIntoArray(children, result, "", "", function (child) {
|
|
231
|
+
return func.call(context, child, count++);
|
|
232
|
+
});
|
|
233
|
+
return result;
|
|
234
|
+
}
|
|
235
|
+
function lazyInitializer(payload) {
|
|
236
|
+
if (-1 === payload._status) {
|
|
237
|
+
var ctor = payload._result;
|
|
238
|
+
ctor = ctor();
|
|
239
|
+
ctor.then(
|
|
240
|
+
function (moduleObject) {
|
|
241
|
+
if (0 === payload._status || -1 === payload._status)
|
|
242
|
+
(payload._status = 1), (payload._result = moduleObject);
|
|
243
|
+
},
|
|
244
|
+
function (error) {
|
|
245
|
+
if (0 === payload._status || -1 === payload._status)
|
|
246
|
+
(payload._status = 2), (payload._result = error);
|
|
247
|
+
}
|
|
248
|
+
);
|
|
249
|
+
-1 === payload._status && ((payload._status = 0), (payload._result = ctor));
|
|
250
|
+
}
|
|
251
|
+
if (1 === payload._status) return payload._result.default;
|
|
252
|
+
throw payload._result;
|
|
253
|
+
}
|
|
254
|
+
function createCacheRoot() {
|
|
255
|
+
return new WeakMap();
|
|
256
|
+
}
|
|
257
|
+
function createCacheNode() {
|
|
258
|
+
return { s: 0, v: void 0, o: null, p: null };
|
|
259
|
+
}
|
|
260
|
+
exports.Children = {
|
|
261
|
+
map: mapChildren,
|
|
262
|
+
forEach: function (children, forEachFunc, forEachContext) {
|
|
263
|
+
mapChildren(
|
|
264
|
+
children,
|
|
265
|
+
function () {
|
|
266
|
+
forEachFunc.apply(this, arguments);
|
|
267
|
+
},
|
|
268
|
+
forEachContext
|
|
269
|
+
);
|
|
270
|
+
},
|
|
271
|
+
count: function (children) {
|
|
272
|
+
var n = 0;
|
|
273
|
+
mapChildren(children, function () {
|
|
274
|
+
n++;
|
|
275
|
+
});
|
|
276
|
+
return n;
|
|
277
|
+
},
|
|
278
|
+
toArray: function (children) {
|
|
279
|
+
return (
|
|
280
|
+
mapChildren(children, function (child) {
|
|
281
|
+
return child;
|
|
282
|
+
}) || []
|
|
283
|
+
);
|
|
284
|
+
},
|
|
285
|
+
only: function (children) {
|
|
286
|
+
if (!isValidElement(children)) throw Error(formatProdErrorMessage(143));
|
|
287
|
+
return children;
|
|
288
|
+
}
|
|
289
|
+
};
|
|
290
|
+
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
291
|
+
exports.Profiler = REACT_PROFILER_TYPE;
|
|
292
|
+
exports.StrictMode = REACT_STRICT_MODE_TYPE;
|
|
293
|
+
exports.Suspense = REACT_SUSPENSE_TYPE;
|
|
294
|
+
exports.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
|
|
295
|
+
ReactSharedInternals;
|
|
296
|
+
exports.cache = function (fn) {
|
|
297
|
+
return function () {
|
|
298
|
+
var dispatcher = ReactSharedInternals.A;
|
|
299
|
+
if (!dispatcher) return fn.apply(null, arguments);
|
|
300
|
+
var fnMap = dispatcher.getCacheForType(createCacheRoot);
|
|
301
|
+
dispatcher = fnMap.get(fn);
|
|
302
|
+
void 0 === dispatcher &&
|
|
303
|
+
((dispatcher = createCacheNode()), fnMap.set(fn, dispatcher));
|
|
304
|
+
fnMap = 0;
|
|
305
|
+
for (var l = arguments.length; fnMap < l; fnMap++) {
|
|
306
|
+
var arg = arguments[fnMap];
|
|
307
|
+
if (
|
|
308
|
+
"function" === typeof arg ||
|
|
309
|
+
("object" === typeof arg && null !== arg)
|
|
310
|
+
) {
|
|
311
|
+
var objectCache = dispatcher.o;
|
|
312
|
+
null === objectCache && (dispatcher.o = objectCache = new WeakMap());
|
|
313
|
+
dispatcher = objectCache.get(arg);
|
|
314
|
+
void 0 === dispatcher &&
|
|
315
|
+
((dispatcher = createCacheNode()), objectCache.set(arg, dispatcher));
|
|
316
|
+
} else
|
|
317
|
+
(objectCache = dispatcher.p),
|
|
318
|
+
null === objectCache && (dispatcher.p = objectCache = new Map()),
|
|
319
|
+
(dispatcher = objectCache.get(arg)),
|
|
320
|
+
void 0 === dispatcher &&
|
|
321
|
+
((dispatcher = createCacheNode()),
|
|
322
|
+
objectCache.set(arg, dispatcher));
|
|
323
|
+
}
|
|
324
|
+
if (1 === dispatcher.s) return dispatcher.v;
|
|
325
|
+
if (2 === dispatcher.s) throw dispatcher.v;
|
|
326
|
+
try {
|
|
327
|
+
var result = fn.apply(null, arguments);
|
|
328
|
+
fnMap = dispatcher;
|
|
329
|
+
fnMap.s = 1;
|
|
330
|
+
return (fnMap.v = result);
|
|
331
|
+
} catch (error) {
|
|
332
|
+
throw ((result = dispatcher), (result.s = 2), (result.v = error), error);
|
|
333
|
+
}
|
|
334
|
+
};
|
|
335
|
+
};
|
|
336
|
+
exports.cacheSignal = function () {
|
|
337
|
+
var dispatcher = ReactSharedInternals.A;
|
|
338
|
+
return dispatcher ? dispatcher.cacheSignal() : null;
|
|
339
|
+
};
|
|
340
|
+
exports.captureOwnerStack = function () {
|
|
341
|
+
return null;
|
|
342
|
+
};
|
|
343
|
+
exports.cloneElement = function (element, config, children) {
|
|
344
|
+
if (null === element || void 0 === element)
|
|
345
|
+
throw Error(formatProdErrorMessage(267, element));
|
|
346
|
+
var props = assign({}, element.props),
|
|
347
|
+
key = element.key;
|
|
348
|
+
if (null != config)
|
|
349
|
+
for (propName in (void 0 !== config.key && (key = "" + config.key), config))
|
|
350
|
+
!hasOwnProperty.call(config, propName) ||
|
|
351
|
+
"key" === propName ||
|
|
352
|
+
"__self" === propName ||
|
|
353
|
+
"__source" === propName ||
|
|
354
|
+
("ref" === propName && void 0 === config.ref) ||
|
|
355
|
+
(props[propName] = config[propName]);
|
|
356
|
+
var propName = arguments.length - 2;
|
|
357
|
+
if (1 === propName) props.children = children;
|
|
358
|
+
else if (1 < propName) {
|
|
359
|
+
for (var childArray = Array(propName), i = 0; i < propName; i++)
|
|
360
|
+
childArray[i] = arguments[i + 2];
|
|
361
|
+
props.children = childArray;
|
|
362
|
+
}
|
|
363
|
+
return ReactElement(element.type, key, props);
|
|
364
|
+
};
|
|
365
|
+
exports.createElement = function (type, config, children) {
|
|
366
|
+
var propName,
|
|
367
|
+
props = {},
|
|
368
|
+
key = null;
|
|
369
|
+
if (null != config)
|
|
370
|
+
for (propName in (void 0 !== config.key && (key = "" + config.key), config))
|
|
371
|
+
hasOwnProperty.call(config, propName) &&
|
|
372
|
+
"key" !== propName &&
|
|
373
|
+
"__self" !== propName &&
|
|
374
|
+
"__source" !== propName &&
|
|
375
|
+
(props[propName] = config[propName]);
|
|
376
|
+
var childrenLength = arguments.length - 2;
|
|
377
|
+
if (1 === childrenLength) props.children = children;
|
|
378
|
+
else if (1 < childrenLength) {
|
|
379
|
+
for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++)
|
|
380
|
+
childArray[i] = arguments[i + 2];
|
|
381
|
+
props.children = childArray;
|
|
382
|
+
}
|
|
383
|
+
if (type && type.defaultProps)
|
|
384
|
+
for (propName in ((childrenLength = type.defaultProps), childrenLength))
|
|
385
|
+
void 0 === props[propName] &&
|
|
386
|
+
(props[propName] = childrenLength[propName]);
|
|
387
|
+
return ReactElement(type, key, props);
|
|
388
|
+
};
|
|
389
|
+
exports.createRef = function () {
|
|
390
|
+
return { current: null };
|
|
391
|
+
};
|
|
392
|
+
exports.forwardRef = function (render) {
|
|
393
|
+
return { $$typeof: REACT_FORWARD_REF_TYPE, render: render };
|
|
394
|
+
};
|
|
395
|
+
exports.isValidElement = isValidElement;
|
|
396
|
+
exports.lazy = function (ctor) {
|
|
397
|
+
return {
|
|
398
|
+
$$typeof: REACT_LAZY_TYPE,
|
|
399
|
+
_payload: { _status: -1, _result: ctor },
|
|
400
|
+
_init: lazyInitializer
|
|
401
|
+
};
|
|
402
|
+
};
|
|
403
|
+
exports.memo = function (type, compare) {
|
|
404
|
+
return {
|
|
405
|
+
$$typeof: REACT_MEMO_TYPE,
|
|
406
|
+
type: type,
|
|
407
|
+
compare: void 0 === compare ? null : compare
|
|
408
|
+
};
|
|
409
|
+
};
|
|
410
|
+
exports.use = function (usable) {
|
|
411
|
+
return ReactSharedInternals.H.use(usable);
|
|
412
|
+
};
|
|
413
|
+
exports.useCallback = function (callback, deps) {
|
|
414
|
+
return ReactSharedInternals.H.useCallback(callback, deps);
|
|
415
|
+
};
|
|
416
|
+
exports.useDebugValue = function () {};
|
|
417
|
+
exports.useId = function () {
|
|
418
|
+
return ReactSharedInternals.H.useId();
|
|
419
|
+
};
|
|
420
|
+
exports.useMemo = function (create, deps) {
|
|
421
|
+
return ReactSharedInternals.H.useMemo(create, deps);
|
|
422
|
+
};
|
|
423
|
+
exports.version = "19.2.8";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
'use strict';
|
|
9
|
+
|
|
10
|
+
if (process.env.NODE_ENV === 'production') {
|
|
11
|
+
module.exports = require('./cjs/react-compiler-runtime.production.js');
|
|
12
|
+
} else {
|
|
13
|
+
module.exports = require('./cjs/react-compiler-runtime.development.js');
|
|
14
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "react",
|
|
3
|
+
"description": "React is a JavaScript library for building user interfaces.",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"react"
|
|
6
|
+
],
|
|
7
|
+
"version": "19.2.8",
|
|
8
|
+
"homepage": "https://react.dev/",
|
|
9
|
+
"bugs": "https://github.com/react/react/issues",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"files": [
|
|
12
|
+
"LICENSE",
|
|
13
|
+
"README.md",
|
|
14
|
+
"index.js",
|
|
15
|
+
"cjs/",
|
|
16
|
+
"compiler-runtime.js",
|
|
17
|
+
"jsx-runtime.js",
|
|
18
|
+
"jsx-runtime.react-server.js",
|
|
19
|
+
"jsx-dev-runtime.js",
|
|
20
|
+
"jsx-dev-runtime.react-server.js",
|
|
21
|
+
"react.react-server.js"
|
|
22
|
+
],
|
|
23
|
+
"main": "index.js",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"react-server": "./react.react-server.js",
|
|
27
|
+
"default": "./index.js"
|
|
28
|
+
},
|
|
29
|
+
"./package.json": "./package.json",
|
|
30
|
+
"./jsx-runtime": {
|
|
31
|
+
"react-server": "./jsx-runtime.react-server.js",
|
|
32
|
+
"default": "./jsx-runtime.js"
|
|
33
|
+
},
|
|
34
|
+
"./jsx-dev-runtime": {
|
|
35
|
+
"react-server": "./jsx-dev-runtime.react-server.js",
|
|
36
|
+
"default": "./jsx-dev-runtime.js"
|
|
37
|
+
},
|
|
38
|
+
"./compiler-runtime": {
|
|
39
|
+
"react-server": "./compiler-runtime.js",
|
|
40
|
+
"default": "./compiler-runtime.js"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "https://github.com/react/react.git",
|
|
46
|
+
"directory": "packages/react"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=0.10.0"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aui.io/apollo-tui",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"private": true,
|
|
3
|
+
"version": "0.1.5",
|
|
5
4
|
"description": "Interactive Apollo operator TUI built on OpenTUI",
|
|
6
5
|
"type": "module",
|
|
7
6
|
"engines": {
|
|
@@ -35,7 +34,7 @@
|
|
|
35
34
|
"start": "node ./bin/apollo-tui.js"
|
|
36
35
|
},
|
|
37
36
|
"dependencies": {
|
|
38
|
-
"@aui.io/apollo-core": "0.1.
|
|
37
|
+
"@aui.io/apollo-core": "0.1.5",
|
|
39
38
|
"@opentui/core": "^0.1.63",
|
|
40
39
|
"@opentui/react": "^0.1.63",
|
|
41
40
|
"picocolors": "^1.1.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aui.io/apollo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Apollo operator console — CLI + interactive TUI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -30,9 +30,15 @@
|
|
|
30
30
|
"postpack": "node ./scripts/clean-bundle.mjs"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@aui.io/apollo-core": "0.1.
|
|
34
|
-
"@aui.io/apollo-cli": "0.1.
|
|
35
|
-
"@aui.io/apollo-tui": "0.1.
|
|
33
|
+
"@aui.io/apollo-core": "0.1.5",
|
|
34
|
+
"@aui.io/apollo-cli": "0.1.5",
|
|
35
|
+
"@aui.io/apollo-tui": "0.1.5",
|
|
36
|
+
"picocolors": "^1.1.1",
|
|
37
|
+
"yaml": "^2.9.0",
|
|
38
|
+
"commander": "^14.0.3",
|
|
39
|
+
"@opentui/core": "^0.1.63",
|
|
40
|
+
"@opentui/react": "^0.1.63",
|
|
41
|
+
"react": "^19.1.0"
|
|
36
42
|
},
|
|
37
43
|
"bundleDependencies": [
|
|
38
44
|
"@aui.io/apollo-core",
|