@carbon/ai-chat-components 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +1 -1
- package/es/components/code-snippet/src/codemirror/base-setup.js +3 -3
- package/es/components/code-snippet/src/codemirror/codemirror-runtime.d.ts +1 -1
- package/es/components/code-snippet/src/codemirror/codemirror-runtime.js +1 -1
- package/es/components/code-snippet/src/codemirror/content-sync.d.ts +1 -1
- package/es/components/code-snippet/src/codemirror/editor-manager.d.ts +1 -1
- package/es/components/code-snippet/src/codemirror/editor-manager.js +1 -1
- package/es/components/code-snippet/src/codemirror/language-controller.d.ts +1 -1
- package/es/components/code-snippet/src/codemirror/theme.js +1 -1
- package/es-custom/components/card/index.d.ts +11 -0
- package/es-custom/components/card/index.js +11 -0
- package/es-custom/components/card/index.js.map +1 -0
- package/es-custom/components/card/src/card-footer.d.ts +43 -0
- package/es-custom/components/card/src/card-footer.js +141 -0
- package/es-custom/components/card/src/card-footer.js.map +1 -0
- package/es-custom/components/card/src/card-footer.scss.js +13 -0
- package/es-custom/components/card/src/card-footer.scss.js.map +1 -0
- package/es-custom/components/card/src/card-steps.d.ts +28 -0
- package/es-custom/components/card/src/card-steps.js +91 -0
- package/es-custom/components/card/src/card-steps.js.map +1 -0
- package/es-custom/components/card/src/card-steps.scss.js +13 -0
- package/es-custom/components/card/src/card-steps.scss.js.map +1 -0
- package/es-custom/components/card/src/card.d.ts +27 -0
- package/es-custom/components/card/src/card.js +65 -0
- package/es-custom/components/card/src/card.js.map +1 -0
- package/es-custom/components/card/src/card.scss.js +13 -0
- package/es-custom/components/card/src/card.scss.js.map +1 -0
- package/es-custom/components/chain-of-thought/defs.d.ts +54 -0
- package/es-custom/components/chain-of-thought/defs.js +38 -0
- package/es-custom/components/chain-of-thought/defs.js.map +1 -0
- package/es-custom/components/chain-of-thought/index.d.ts +10 -0
- package/es-custom/components/chain-of-thought/index.js +13 -0
- package/es-custom/components/chain-of-thought/index.js.map +1 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought-step.d.ts +43 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought-step.js +351 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought-step.js.map +1 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought-step.scss.js +13 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought-step.scss.js.map +1 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.d.ts +33 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.js +107 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.js.map +1 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.scss.js +13 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought-toggle.scss.js.map +1 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought.d.ts +41 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought.js +132 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought.js.map +1 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought.scss.js +13 -0
- package/es-custom/components/chain-of-thought/src/chain-of-thought.scss.js.map +1 -0
- package/es-custom/components/chain-of-thought/src/tool-call-data.d.ts +33 -0
- package/es-custom/components/chain-of-thought/src/tool-call-data.js +179 -0
- package/es-custom/components/chain-of-thought/src/tool-call-data.js.map +1 -0
- package/es-custom/components/chain-of-thought/src/tool-call-data.scss.js +13 -0
- package/es-custom/components/chain-of-thought/src/tool-call-data.scss.js.map +1 -0
- package/es-custom/components/chat-button/defs.d.ts +25 -0
- package/es-custom/components/chat-button/defs.js +36 -0
- package/es-custom/components/chat-button/defs.js.map +1 -0
- package/es-custom/components/chat-button/index.d.ts +9 -0
- package/es-custom/components/chat-button/index.js +9 -0
- package/es-custom/components/chat-button/index.js.map +1 -0
- package/es-custom/components/chat-button/src/chat-button.d.ts +40 -0
- package/es-custom/components/chat-button/src/chat-button.js +78 -0
- package/es-custom/components/chat-button/src/chat-button.js.map +1 -0
- package/es-custom/components/chat-button/src/chat-button.scss.js +13 -0
- package/es-custom/components/chat-button/src/chat-button.scss.js.map +1 -0
- package/es-custom/components/code-snippet/index.d.ts +3 -0
- package/es-custom/components/code-snippet/index.js +10 -0
- package/es-custom/components/code-snippet/index.js.map +1 -0
- package/es-custom/components/code-snippet/src/code-snippet-card.d.ts +63 -0
- package/es-custom/components/code-snippet/src/code-snippet-card.js +186 -0
- package/es-custom/components/code-snippet/src/code-snippet-card.js.map +1 -0
- package/es-custom/components/code-snippet/src/code-snippet.d.ts +461 -0
- package/es-custom/components/code-snippet/src/code-snippet.js +678 -0
- package/es-custom/components/code-snippet/src/code-snippet.js.map +1 -0
- package/es-custom/components/code-snippet/src/code-snippet.scss.js +13 -0
- package/es-custom/components/code-snippet/src/code-snippet.scss.js.map +1 -0
- package/es-custom/components/code-snippet/src/codemirror/base-setup.d.ts +12 -0
- package/es-custom/components/code-snippet/src/codemirror/base-setup.js +65 -0
- package/es-custom/components/code-snippet/src/codemirror/base-setup.js.map +1 -0
- package/es-custom/components/code-snippet/src/codemirror/codemirror-loader.d.ts +12 -0
- package/es-custom/components/code-snippet/src/codemirror/codemirror-loader.js +36 -0
- package/es-custom/components/code-snippet/src/codemirror/codemirror-loader.js.map +1 -0
- package/es-custom/components/code-snippet/src/codemirror/codemirror-runtime.d.ts +7 -0
- package/es-custom/components/code-snippet/src/codemirror/codemirror-runtime.js +13 -0
- package/es-custom/components/code-snippet/src/codemirror/codemirror-runtime.js.map +1 -0
- package/es-custom/components/code-snippet/src/codemirror/content-sync.d.ts +12 -0
- package/es-custom/components/code-snippet/src/codemirror/content-sync.js +72 -0
- package/es-custom/components/code-snippet/src/codemirror/content-sync.js.map +1 -0
- package/es-custom/components/code-snippet/src/codemirror/editor-manager.d.ts +28 -0
- package/es-custom/components/code-snippet/src/codemirror/editor-manager.js +75 -0
- package/es-custom/components/code-snippet/src/codemirror/editor-manager.js.map +1 -0
- package/es-custom/components/code-snippet/src/codemirror/language-controller.d.ts +38 -0
- package/es-custom/components/code-snippet/src/codemirror/language-controller.js +220 -0
- package/es-custom/components/code-snippet/src/codemirror/language-controller.js.map +1 -0
- package/es-custom/components/code-snippet/src/codemirror/language-data.d.ts +6 -0
- package/es-custom/components/code-snippet/src/codemirror/language-data.js +1043 -0
- package/es-custom/components/code-snippet/src/codemirror/language-data.js.map +1 -0
- package/es-custom/components/code-snippet/src/codemirror/language-utils.d.ts +79 -0
- package/es-custom/components/code-snippet/src/codemirror/language-utils.js +219 -0
- package/es-custom/components/code-snippet/src/codemirror/language-utils.js.map +1 -0
- package/es-custom/components/code-snippet/src/codemirror/marker-utils.d.ts +123 -0
- package/es-custom/components/code-snippet/src/codemirror/marker-utils.js +183 -0
- package/es-custom/components/code-snippet/src/codemirror/marker-utils.js.map +1 -0
- package/es-custom/components/code-snippet/src/codemirror/theme.d.ts +54 -0
- package/es-custom/components/code-snippet/src/codemirror/theme.js +320 -0
- package/es-custom/components/code-snippet/src/codemirror/theme.js.map +1 -0
- package/es-custom/components/code-snippet/src/dom-utils.d.ts +24 -0
- package/es-custom/components/code-snippet/src/dom-utils.js +63 -0
- package/es-custom/components/code-snippet/src/dom-utils.js.map +1 -0
- package/es-custom/components/code-snippet/src/formatters.d.ts +4 -0
- package/es-custom/components/code-snippet/src/formatters.js +19 -0
- package/es-custom/components/code-snippet/src/formatters.js.map +1 -0
- package/es-custom/components/code-snippet/src/layout-utils.d.ts +22 -0
- package/es-custom/components/code-snippet/src/layout-utils.js +63 -0
- package/es-custom/components/code-snippet/src/layout-utils.js.map +1 -0
- package/es-custom/components/code-snippet/src/streaming-manager.d.ts +24 -0
- package/es-custom/components/code-snippet/src/streaming-manager.js +120 -0
- package/es-custom/components/code-snippet/src/streaming-manager.js.map +1 -0
- package/es-custom/components/feedback/index.d.ts +4 -0
- package/es-custom/components/feedback/index.js +10 -0
- package/es-custom/components/feedback/index.js.map +1 -0
- package/es-custom/components/feedback/src/feedback-buttons.d.ts +63 -0
- package/es-custom/components/feedback/src/feedback-buttons.js +113 -0
- package/es-custom/components/feedback/src/feedback-buttons.js.map +1 -0
- package/es-custom/components/feedback/src/feedback-buttons.scss.js +13 -0
- package/es-custom/components/feedback/src/feedback-buttons.scss.js.map +1 -0
- package/es-custom/components/feedback/src/feedback-buttons.template.d.ts +4 -0
- package/es-custom/components/feedback/src/feedback-buttons.template.js +79 -0
- package/es-custom/components/feedback/src/feedback-buttons.template.js.map +1 -0
- package/es-custom/components/feedback/src/feedback.d.ts +113 -0
- package/es-custom/components/feedback/src/feedback.js +195 -0
- package/es-custom/components/feedback/src/feedback.js.map +1 -0
- package/es-custom/components/feedback/src/feedback.scss.js +13 -0
- package/es-custom/components/feedback/src/feedback.scss.js.map +1 -0
- package/es-custom/components/feedback/src/feedback.template.d.ts +12 -0
- package/es-custom/components/feedback/src/feedback.template.js +115 -0
- package/es-custom/components/feedback/src/feedback.template.js.map +1 -0
- package/es-custom/components/markdown/index.d.ts +2 -0
- package/es-custom/components/markdown/index.js +9 -0
- package/es-custom/components/markdown/index.js.map +1 -0
- package/es-custom/components/markdown/src/markdown-renderer.d.ts +66 -0
- package/es-custom/components/markdown/src/markdown-renderer.js +359 -0
- package/es-custom/components/markdown/src/markdown-renderer.js.map +1 -0
- package/es-custom/components/markdown/src/markdown-token-tree.d.ts +32 -0
- package/es-custom/components/markdown/src/markdown-token-tree.js +180 -0
- package/es-custom/components/markdown/src/markdown-token-tree.js.map +1 -0
- package/es-custom/components/markdown/src/markdown.d.ts +72 -0
- package/es-custom/components/markdown/src/markdown.js +342 -0
- package/es-custom/components/markdown/src/markdown.js.map +1 -0
- package/es-custom/components/markdown/src/markdown.scss.js +13 -0
- package/es-custom/components/markdown/src/markdown.scss.js.map +1 -0
- package/es-custom/components/markdown/src/markdown.template.d.ts +6 -0
- package/es-custom/components/markdown/src/markdown.template.js +29 -0
- package/es-custom/components/markdown/src/markdown.template.js.map +1 -0
- package/es-custom/components/markdown/src/plugins/markdown-it-attrs.d.ts +7 -0
- package/es-custom/components/markdown/src/plugins/markdown-it-attrs.js +84 -0
- package/es-custom/components/markdown/src/plugins/markdown-it-attrs.js.map +1 -0
- package/es-custom/components/markdown/src/plugins/markdown-it-highlight.d.ts +7 -0
- package/es-custom/components/markdown/src/plugins/markdown-it-highlight.js +59 -0
- package/es-custom/components/markdown/src/plugins/markdown-it-highlight.js.map +1 -0
- package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.d.ts +12 -0
- package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.js +73 -0
- package/es-custom/components/markdown/src/plugins/markdown-it-task-lists.js.map +1 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/core.d.ts +26 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/core.js +330 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/core.js.map +1 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/blocks.d.ts +6 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/blocks.js +63 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/blocks.js.map +1 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/code.d.ts +6 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/code.js +43 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/code.js.map +1 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/index.d.ts +5 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/index.js +55 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/index.js.map +1 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/inline.d.ts +19 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/inline.js +210 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/inline.js.map +1 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/lists.d.ts +13 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/lists.js +156 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/lists.js.map +1 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/tables.d.ts +13 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/tables.js +216 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/patterns/tables.js.map +1 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/types.d.ts +34 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/types.js +8 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/types.js.map +1 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/utils.d.ts +25 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/utils.js +62 -0
- package/es-custom/components/markdown/src/plugins/markdownItAttrs/utils.js.map +1 -0
- package/es-custom/components/markdown/src/utils/html-helpers.d.ts +2 -0
- package/es-custom/components/markdown/src/utils/html-helpers.js +204 -0
- package/es-custom/components/markdown/src/utils/html-helpers.js.map +1 -0
- package/es-custom/components/markdown/src/utils/table-helpers.d.ts +31 -0
- package/es-custom/components/markdown/src/utils/table-helpers.js +106 -0
- package/es-custom/components/markdown/src/utils/table-helpers.js.map +1 -0
- package/es-custom/components/markdown/src/utils.d.ts +8 -0
- package/es-custom/components/markdown/src/utils.js +31 -0
- package/es-custom/components/markdown/src/utils.js.map +1 -0
- package/es-custom/components/processing/index.d.ts +1 -0
- package/es-custom/components/processing/index.js +9 -0
- package/es-custom/components/processing/index.js.map +1 -0
- package/es-custom/components/processing/src/processing.d.ts +16 -0
- package/es-custom/components/processing/src/processing.js +59 -0
- package/es-custom/components/processing/src/processing.js.map +1 -0
- package/es-custom/components/processing/src/processing.scss.js +13 -0
- package/es-custom/components/processing/src/processing.scss.js.map +1 -0
- package/es-custom/components/reasoning-steps/index.d.ts +4 -0
- package/es-custom/components/reasoning-steps/index.js +11 -0
- package/es-custom/components/reasoning-steps/index.js.map +1 -0
- package/es-custom/components/reasoning-steps/src/reasoning-step.d.ts +33 -0
- package/es-custom/components/reasoning-steps/src/reasoning-step.js +251 -0
- package/es-custom/components/reasoning-steps/src/reasoning-step.js.map +1 -0
- package/es-custom/components/reasoning-steps/src/reasoning-step.scss.js +13 -0
- package/es-custom/components/reasoning-steps/src/reasoning-step.scss.js.map +1 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.d.ts +36 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.js +81 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.js.map +1 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.scss.js +13 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.scss.js.map +1 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.template.d.ts +3 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.template.js +43 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps-toggle.template.js.map +1 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps.d.ts +19 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps.js +112 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps.js.map +1 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps.scss.js +13 -0
- package/es-custom/components/reasoning-steps/src/reasoning-steps.scss.js.map +1 -0
- package/es-custom/components/table/index.d.ts +3 -0
- package/es-custom/components/table/index.js +9 -0
- package/es-custom/components/table/index.js.map +1 -0
- package/es-custom/components/table/src/table-loader.d.ts +4 -0
- package/es-custom/components/table/src/table-loader.js +28 -0
- package/es-custom/components/table/src/table-loader.js.map +1 -0
- package/es-custom/components/table/src/table-pagination.template.d.ts +27 -0
- package/es-custom/components/table/src/table-pagination.template.js +55 -0
- package/es-custom/components/table/src/table-pagination.template.js.map +1 -0
- package/es-custom/components/table/src/table-runtime.d.ts +2 -0
- package/es-custom/components/table/src/table-runtime.js +10 -0
- package/es-custom/components/table/src/table-runtime.js.map +1 -0
- package/es-custom/components/table/src/table-skeleton.template.d.ts +6 -0
- package/es-custom/components/table/src/table-skeleton.template.js +34 -0
- package/es-custom/components/table/src/table-skeleton.template.js.map +1 -0
- package/es-custom/components/table/src/table.d.ts +184 -0
- package/es-custom/components/table/src/table.js +543 -0
- package/es-custom/components/table/src/table.js.map +1 -0
- package/es-custom/components/table/src/table.scss.js +13 -0
- package/es-custom/components/table/src/table.scss.js.map +1 -0
- package/es-custom/components/table/src/table.template.d.ts +10 -0
- package/es-custom/components/table/src/table.template.js +89 -0
- package/es-custom/components/table/src/table.template.js.map +1 -0
- package/es-custom/components/table/src/types.d.ts +13 -0
- package/es-custom/components/table/src/types.js +8 -0
- package/es-custom/components/table/src/types.js.map +1 -0
- package/es-custom/components/toolbar/index.d.ts +1 -0
- package/es-custom/components/toolbar/index.js +9 -0
- package/es-custom/components/toolbar/index.js.map +1 -0
- package/es-custom/components/toolbar/src/toolbar.d.ts +38 -0
- package/es-custom/components/toolbar/src/toolbar.js +191 -0
- package/es-custom/components/toolbar/src/toolbar.js.map +1 -0
- package/es-custom/components/toolbar/src/toolbar.scss.js +13 -0
- package/es-custom/components/toolbar/src/toolbar.scss.js.map +1 -0
- package/es-custom/components/workspace-shell/index.d.ts +4 -0
- package/es-custom/components/workspace-shell/index.js +12 -0
- package/es-custom/components/workspace-shell/index.js.map +1 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-body.d.ts +17 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-body.js +50 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-body.js.map +1 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-footer.d.ts +40 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-footer.js +144 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-footer.js.map +1 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-footer.scss.js +13 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-footer.scss.js.map +1 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-header.d.ts +28 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-header.js +78 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-header.js.map +1 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-header.scss.js +13 -0
- package/es-custom/components/workspace-shell/src/workspace-shell-header.scss.js.map +1 -0
- package/es-custom/components/workspace-shell/src/workspace-shell.d.ts +19 -0
- package/es-custom/components/workspace-shell/src/workspace-shell.js +56 -0
- package/es-custom/components/workspace-shell/src/workspace-shell.js.map +1 -0
- package/es-custom/components/workspace-shell/src/workspace-shell.scss.js +13 -0
- package/es-custom/components/workspace-shell/src/workspace-shell.scss.js.map +1 -0
- package/es-custom/globals/decorators/carbon-element.d.ts +37 -0
- package/es-custom/globals/decorators/carbon-element.js +68 -0
- package/es-custom/globals/decorators/carbon-element.js.map +1 -0
- package/es-custom/globals/decorators/index.d.ts +1 -0
- package/es-custom/globals/decorators/index.js +9 -0
- package/es-custom/globals/decorators/index.js.map +1 -0
- package/es-custom/globals/settings.d.ts +2 -0
- package/es-custom/globals/settings.js +20 -0
- package/es-custom/globals/settings.js.map +1 -0
- package/es-custom/globals/utils/uuid.d.ts +5 -0
- package/es-custom/globals/utils/uuid.js +32 -0
- package/es-custom/globals/utils/uuid.js.map +1 -0
- package/es-custom/node_modules/@carbon/utilities/es/documentLang/documentLang.js +9 -0
- package/es-custom/node_modules/@carbon/utilities/es/documentLang/documentLang.js.map +1 -0
- package/es-custom/node_modules/@carbon/utilities/es/overflowHandler/overflowHandler.js +11 -0
- package/es-custom/node_modules/@carbon/utilities/es/overflowHandler/overflowHandler.js.map +1 -0
- package/es-custom/react/ai-label.d.ts +4 -0
- package/es-custom/react/ai-label.js +28 -0
- package/es-custom/react/ai-label.js.map +1 -0
- package/es-custom/react/button.d.ts +6 -0
- package/es-custom/react/button.js +29 -0
- package/es-custom/react/button.js.map +1 -0
- package/es-custom/react/card.d.ts +9 -0
- package/es-custom/react/card.js +43 -0
- package/es-custom/react/card.js.map +1 -0
- package/es-custom/react/chain-of-thought-step.d.ts +4 -0
- package/es-custom/react/chain-of-thought-step.js +32 -0
- package/es-custom/react/chain-of-thought-step.js.map +1 -0
- package/es-custom/react/chain-of-thought-toggle.d.ts +6 -0
- package/es-custom/react/chain-of-thought-toggle.js +31 -0
- package/es-custom/react/chain-of-thought-toggle.js.map +1 -0
- package/es-custom/react/chain-of-thought.d.ts +7 -0
- package/es-custom/react/chain-of-thought.js +33 -0
- package/es-custom/react/chain-of-thought.js.map +1 -0
- package/es-custom/react/chat-button.d.ts +13 -0
- package/es-custom/react/chat-button.js +30 -0
- package/es-custom/react/chat-button.js.map +1 -0
- package/es-custom/react/code-snippet-card.d.ts +4 -0
- package/es-custom/react/code-snippet-card.js +31 -0
- package/es-custom/react/code-snippet-card.js.map +1 -0
- package/es-custom/react/code-snippet.d.ts +4 -0
- package/es-custom/react/code-snippet.js +31 -0
- package/es-custom/react/code-snippet.js.map +1 -0
- package/es-custom/react/content-switcher.d.ts +7 -0
- package/es-custom/react/content-switcher.js +37 -0
- package/es-custom/react/content-switcher.js.map +1 -0
- package/es-custom/react/feedback-buttons.d.ts +4 -0
- package/es-custom/react/feedback-buttons.js +31 -0
- package/es-custom/react/feedback-buttons.js.map +1 -0
- package/es-custom/react/feedback.d.ts +6 -0
- package/es-custom/react/feedback.js +32 -0
- package/es-custom/react/feedback.js.map +1 -0
- package/es-custom/react/icon-button.d.ts +4 -0
- package/es-custom/react/icon-button.js +28 -0
- package/es-custom/react/icon-button.js.map +1 -0
- package/es-custom/react/icon.d.ts +4 -0
- package/es-custom/react/icon.js +28 -0
- package/es-custom/react/icon.js.map +1 -0
- package/es-custom/react/inline-notification.d.ts +4 -0
- package/es-custom/react/inline-notification.js +28 -0
- package/es-custom/react/inline-notification.js.map +1 -0
- package/es-custom/react/markdown.d.ts +4 -0
- package/es-custom/react/markdown.js +28 -0
- package/es-custom/react/markdown.js.map +1 -0
- package/es-custom/react/overflow-menu.d.ts +9 -0
- package/es-custom/react/overflow-menu.js +40 -0
- package/es-custom/react/overflow-menu.js.map +1 -0
- package/es-custom/react/processing.d.ts +4 -0
- package/es-custom/react/processing.js +28 -0
- package/es-custom/react/processing.js.map +1 -0
- package/es-custom/react/reasoning-step.d.ts +4 -0
- package/es-custom/react/reasoning-step.js +32 -0
- package/es-custom/react/reasoning-step.js.map +1 -0
- package/es-custom/react/reasoning-steps-toggle.d.ts +6 -0
- package/es-custom/react/reasoning-steps-toggle.js +31 -0
- package/es-custom/react/reasoning-steps-toggle.js.map +1 -0
- package/es-custom/react/reasoning-steps.d.ts +4 -0
- package/es-custom/react/reasoning-steps.js +28 -0
- package/es-custom/react/reasoning-steps.js.map +1 -0
- package/es-custom/react/tag.d.ts +4 -0
- package/es-custom/react/tag.js +28 -0
- package/es-custom/react/tag.js.map +1 -0
- package/es-custom/react/tile.d.ts +7 -0
- package/es-custom/react/tile.js +34 -0
- package/es-custom/react/tile.js.map +1 -0
- package/es-custom/react/tool-call-data.d.ts +4 -0
- package/es-custom/react/tool-call-data.js +28 -0
- package/es-custom/react/tool-call-data.js.map +1 -0
- package/es-custom/react/toolbar.d.ts +4 -0
- package/es-custom/react/toolbar.js +28 -0
- package/es-custom/react/toolbar.js.map +1 -0
- package/es-custom/react/utils/withWebComponentBridge.d.ts +15 -0
- package/es-custom/react/utils/withWebComponentBridge.js +95 -0
- package/es-custom/react/utils/withWebComponentBridge.js.map +1 -0
- package/es-custom/react/workspace-shell.d.ts +11 -0
- package/es-custom/react/workspace-shell.js +49 -0
- package/es-custom/react/workspace-shell.js.map +1 -0
- package/es-custom/testing/load-all-lazy-deps.d.ts +10 -0
- package/es-custom/testing/load-all-lazy-deps.js +30 -0
- package/es-custom/testing/load-all-lazy-deps.js.map +1 -0
- package/package.json +8 -6
- package/dist/16-C9Ph5740.js +0 -91
- package/dist/16-Dw0Ci4Fd.js +0 -91
- package/dist/16-FH37w-8T.js +0 -91
- package/dist/apl-ugs9-gp6.js +0 -91
- package/dist/asciiarmor-BsIYfA6P.js +0 -91
- package/dist/asn1-HkF5z2_O.js +0 -91
- package/dist/asterisk-CAIjKZq6.js +0 -91
- package/dist/button-Bc3tNCYN.js +0 -157
- package/dist/button-skeleton-DH50p4bH.js +0 -131
- package/dist/carbon-element-C38isbCs.js +0 -91
- package/dist/card.min.js +0 -193
- package/dist/chain-of-thought.min.js +0 -294
- package/dist/chat-button.min.js +0 -107
- package/dist/checkbox-skeleton-CS3inOnf.js +0 -166
- package/dist/class-map-BE4cOc2X.js +0 -128
- package/dist/clike-BIFB3b_k.js +0 -91
- package/dist/clojure-CXNiCqqB.js +0 -91
- package/dist/cmake-CR9NkLsk.js +0 -91
- package/dist/cobol-Ck90O_9v.js +0 -91
- package/dist/code-snippet.min.js +0 -91
- package/dist/codemirror-runtime-D8qZsrKE.js +0 -173
- package/dist/coffeescript-C0nvD2I-.js +0 -91
- package/dist/collection-helpers-BqatNkHh.js +0 -91
- package/dist/commonlisp-BROP4IME.js +0 -91
- package/dist/crystal-D6K96_U-.js +0 -91
- package/dist/css-CdH_tvvW.js +0 -91
- package/dist/cypher-CtHiEXsa.js +0 -91
- package/dist/d-Dcs18F9P.js +0 -91
- package/dist/diff-Bp64yuxL.js +0 -91
- package/dist/dockerfile-1DOwDLks.js +0 -91
- package/dist/dtd-DBKuh-AW.js +0 -91
- package/dist/dylan-ZUYgifRI.js +0 -91
- package/dist/ebnf-CEelJcGq.js +0 -91
- package/dist/ecl-CphVX9Cq.js +0 -91
- package/dist/eiffel-BQPneqZH.js +0 -91
- package/dist/elm-DSPAgqOt.js +0 -91
- package/dist/erlang-D_rMo9WA.js +0 -91
- package/dist/factor-CMTQjKbR.js +0 -91
- package/dist/fcl-BX3Rw6-t.js +0 -91
- package/dist/feedback.min.js +0 -281
- package/dist/forth-BGhjMNd3.js +0 -91
- package/dist/fortran-AEBjaYMh.js +0 -91
- package/dist/gas-DZXAjJGb.js +0 -91
- package/dist/gherkin-DxJx7fVg.js +0 -91
- package/dist/groovy-dfLbXlDy.js +0 -91
- package/dist/haskell-DyZ9y283.js +0 -91
- package/dist/haxe-D47ScCJn.js +0 -91
- package/dist/http-CQ5YdFwi.js +0 -91
- package/dist/icon-button-jLtiwRb4.js +0 -143
- package/dist/icon-loader-BKTEuybf.js +0 -101
- package/dist/idl-DMLd56tu.js +0 -91
- package/dist/if-defined-Dk7gHH6I.js +0 -96
- package/dist/index--CctdwCC.js +0 -91
- package/dist/index--ktPsmev.js +0 -168
- package/dist/index-BHiWR-3B.js +0 -91
- package/dist/index-BI8bnAEd.js +0 -91
- package/dist/index-BbGF94cg.js +0 -91
- package/dist/index-BnQBLEPx.js +0 -91
- package/dist/index-BsUuLdXD.js +0 -91
- package/dist/index-C2xfmTPp.js +0 -91
- package/dist/index-C3BN0MYy.js +0 -91
- package/dist/index-CD4di8Cf.js +0 -91
- package/dist/index-CVyUt3LQ.js +0 -91
- package/dist/index-Cg7m4sg1.js +0 -91
- package/dist/index-ClimwzxW.js +0 -91
- package/dist/index-CrevYuI-.js +0 -91
- package/dist/index-D5kcnwm2.js +0 -91
- package/dist/index-DCbIO0Hl.js +0 -91
- package/dist/index-Db-BDibx.js +0 -91
- package/dist/index-DmpHBiKi.js +0 -91
- package/dist/index-DzPjFlOn.js +0 -91
- package/dist/index-MgVf_8OP.js +0 -91
- package/dist/index-WHfhssUV.js +0 -91
- package/dist/index-rdaURAlB.js +0 -91
- package/dist/index-tFrMu4B_.js +0 -278
- package/dist/index-yLnmvqXN.js +0 -91
- package/dist/javascript-CB_5CYW7.js +0 -91
- package/dist/julia-DmOIk9mc.js +0 -91
- package/dist/livescript-BkgLC0lL.js +0 -91
- package/dist/loading-icon-CmnM4I_H.js +0 -106
- package/dist/lua-CWM_r9JC.js +0 -91
- package/dist/markdown.min.js +0 -298
- package/dist/mathematica-BSatVfC1.js +0 -91
- package/dist/mbox-4am1R8hd.js +0 -91
- package/dist/mirc-pdtTGW9l.js +0 -91
- package/dist/mllike-C0YFsE1U.js +0 -91
- package/dist/modelica-DVTWSHR-.js +0 -91
- package/dist/mscgen-ByAgrjGx.js +0 -91
- package/dist/mumps-X97p0_h_.js +0 -91
- package/dist/nginx-CqUadVPT.js +0 -91
- package/dist/nsis-Urp7BrWk.js +0 -91
- package/dist/ntriples-CToxeTsT.js +0 -91
- package/dist/octave-Dc4mpp8A.js +0 -91
- package/dist/oz-DX2Pk_mI.js +0 -91
- package/dist/pascal-B9GL_nqz.js +0 -91
- package/dist/perl-BvZFpXKD.js +0 -91
- package/dist/pig-BxFxDHBk.js +0 -91
- package/dist/powershell-CwCLRM7O.js +0 -91
- package/dist/processing.min.js +0 -105
- package/dist/properties-3nFD-Vnh.js +0 -91
- package/dist/protobuf-RqEyuWlw.js +0 -91
- package/dist/pug-1L6dEUb3.js +0 -91
- package/dist/puppet-C-gxR1ON.js +0 -91
- package/dist/python-BSbm1-vO.js +0 -91
- package/dist/q-4yAbTbi2.js +0 -91
- package/dist/r-BxfoMXlJ.js +0 -91
- package/dist/reasoning-steps.min.js +0 -202
- package/dist/rpm-DOp6MTEb.js +0 -91
- package/dist/ruby-DD6QCAKT.js +0 -91
- package/dist/sas-Cb-4sFOe.js +0 -91
- package/dist/scheme-CZsCl8E_.js +0 -91
- package/dist/settings-e2aItLYn.js +0 -99
- package/dist/shell-Bba6ETw_.js +0 -91
- package/dist/sieve-DZz1QovM.js +0 -91
- package/dist/simple-mode-DAyX7kcU.js +0 -91
- package/dist/smalltalk-BVigbKw-.js +0 -91
- package/dist/solr-BRh8QRgo.js +0 -91
- package/dist/sparql-DPq9GGqu.js +0 -91
- package/dist/spreadsheet-DWXWohNi.js +0 -91
- package/dist/sql-HgNux1Fi.js +0 -91
- package/dist/state-Bv4FM_9B.js +0 -96
- package/dist/stex-DB306cTl.js +0 -91
- package/dist/stylus-BVbE3BhF.js +0 -91
- package/dist/swift-k2z0otOi.js +0 -91
- package/dist/sync-D3qEZKNY.js +0 -91
- package/dist/table-runtime-Q-ak_IZE.js +0 -510
- package/dist/table.min.js +0 -91
- package/dist/tcl-BJwoeXra.js +0 -91
- package/dist/text-input-BlCqTf_p.js +0 -158
- package/dist/textile-9DAvWy-Y.js +0 -91
- package/dist/throttle-Bst9TagJ.js +0 -91
- package/dist/tiddlywiki-CDJdAycW.js +0 -91
- package/dist/tiki-Dlg5DFIR.js +0 -91
- package/dist/toml-DGqt7oU6.js +0 -91
- package/dist/toolbar.min.js +0 -178
- package/dist/troff-xJv1Y_X_.js +0 -91
- package/dist/ttcn-cfg-CrKiCUlI.js +0 -91
- package/dist/ttcn-dBogkyiy.js +0 -91
- package/dist/turtle-qtDt5E0f.js +0 -91
- package/dist/vb-h5NatM2n.js +0 -91
- package/dist/vbscript-BnXXn72l.js +0 -91
- package/dist/velocity-C_ZqzMiT.js +0 -91
- package/dist/verilog-s8oM517K.js +0 -91
- package/dist/vhdl-BgZd0MBH.js +0 -91
- package/dist/webidl-CDRn4bGa.js +0 -91
- package/dist/workspace-shell.min.js +0 -157
- package/dist/xquery-DTfjYCD7.js +0 -91
- package/dist/yacas-DxV9-gAO.js +0 -91
- package/dist/z80-PFwavMao.js +0 -91
- package/es/node_modules/@codemirror/autocomplete/dist/index.js +0 -258
- package/es/node_modules/@codemirror/autocomplete/dist/index.js.map +0 -1
- package/es/node_modules/@codemirror/commands/dist/index.js +0 -1140
- package/es/node_modules/@codemirror/commands/dist/index.js.map +0 -1
- package/es/node_modules/@codemirror/lint/dist/index.js +0 -636
- package/es/node_modules/@codemirror/lint/dist/index.js.map +0 -1
- package/es/node_modules/@lezer/common/dist/index.js +0 -253
- package/es/node_modules/@lezer/common/dist/index.js.map +0 -1
- package/es/node_modules/crelt/index.js +0 -37
- package/es/node_modules/crelt/index.js.map +0 -1
package/dist/haskell-DyZ9y283.js
DELETED
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
*
|
|
4
|
-
* Copyright IBM Corp. 2025
|
|
5
|
-
*
|
|
6
|
-
* This source code is licensed under the Apache-2.0 license found in the
|
|
7
|
-
* LICENSE file in the root directory of this source tree.
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* @license
|
|
11
|
-
*
|
|
12
|
-
* This bundle contains the following third-party dependencies:
|
|
13
|
-
*
|
|
14
|
-
* Also refer to the following links for the license of other third-party dependencies:
|
|
15
|
-
*
|
|
16
|
-
* https://www.npmjs.com/package/tslib
|
|
17
|
-
* https://www.npmjs.com/package/lit
|
|
18
|
-
* https://www.npmjs.com/package/markdown-it
|
|
19
|
-
* https://www.npmjs.com/package/lodash-es
|
|
20
|
-
* https://www.npmjs.com/package/dompurify
|
|
21
|
-
* https://www.npmjs.com/package/@codemirror/state
|
|
22
|
-
* https://www.npmjs.com/package/csv-stringify
|
|
23
|
-
* https://www.npmjs.com/package/lit-html
|
|
24
|
-
* https://www.npmjs.com/package/@carbon/web-components
|
|
25
|
-
* https://www.npmjs.com/package/codemirror
|
|
26
|
-
* https://www.npmjs.com/package/@codemirror/language
|
|
27
|
-
* https://www.npmjs.com/package/@codemirror/lang-cpp
|
|
28
|
-
* https://www.npmjs.com/package/@codemirror/lang-go
|
|
29
|
-
* https://www.npmjs.com/package/@codemirror/lang-html
|
|
30
|
-
* https://www.npmjs.com/package/@codemirror/lang-javascript
|
|
31
|
-
* https://www.npmjs.com/package/@codemirror/lang-sql
|
|
32
|
-
* https://www.npmjs.com/package/@codemirror/lang-css
|
|
33
|
-
* https://www.npmjs.com/package/@codemirror/lang-java
|
|
34
|
-
* https://www.npmjs.com/package/@codemirror/lang-jinja
|
|
35
|
-
* https://www.npmjs.com/package/@codemirror/lang-json
|
|
36
|
-
* https://www.npmjs.com/package/@codemirror/lang-less
|
|
37
|
-
* https://www.npmjs.com/package/@codemirror/lang-php
|
|
38
|
-
* https://www.npmjs.com/package/@codemirror/lang-sass
|
|
39
|
-
* https://www.npmjs.com/package/@codemirror/lang-markdown
|
|
40
|
-
* https://www.npmjs.com/package/@codemirror/lang-rust
|
|
41
|
-
* https://www.npmjs.com/package/@codemirror/lang-wast
|
|
42
|
-
* https://www.npmjs.com/package/@codemirror/lang-liquid
|
|
43
|
-
* https://www.npmjs.com/package/@codemirror/legacy-modes
|
|
44
|
-
* https://www.npmjs.com/package/@codemirror/lang-yaml
|
|
45
|
-
* https://www.npmjs.com/package/@codemirror/lang-xml
|
|
46
|
-
* https://www.npmjs.com/package/@codemirror/lang-python
|
|
47
|
-
* https://www.npmjs.com/package/@codemirror/lang-angular
|
|
48
|
-
* https://www.npmjs.com/package/@codemirror/lang-vue
|
|
49
|
-
* https://www.npmjs.com/package/@codemirror/autocomplete
|
|
50
|
-
* https://www.npmjs.com/package/@codemirror/view
|
|
51
|
-
* https://www.npmjs.com/package/@codemirror/lint
|
|
52
|
-
* https://www.npmjs.com/package/@codemirror/commands
|
|
53
|
-
* https://www.npmjs.com/package/@lezer/highlight
|
|
54
|
-
* https://www.npmjs.com/package/@carbon/icons
|
|
55
|
-
* https://www.npmjs.com/package/@carbon/utilities
|
|
56
|
-
* https://www.npmjs.com/package/@carbon/icon-helpers
|
|
57
|
-
* https://www.npmjs.com/package/program-language-detector
|
|
58
|
-
* https://www.npmjs.com/package/lit-element
|
|
59
|
-
* https://www.npmjs.com/package/@lit/reactive-element
|
|
60
|
-
* https://www.npmjs.com/package/@marijn/find-cluster-break
|
|
61
|
-
* https://www.npmjs.com/package/@codemirror/search
|
|
62
|
-
* https://www.npmjs.com/package/crelt
|
|
63
|
-
* https://www.npmjs.com/package/w3c-keyname
|
|
64
|
-
* https://www.npmjs.com/package/style-mod
|
|
65
|
-
* https://www.npmjs.com/package/@lezer/common
|
|
66
|
-
* https://www.npmjs.com/package/@lezer/cpp
|
|
67
|
-
* https://www.npmjs.com/package/@lezer/html
|
|
68
|
-
* https://www.npmjs.com/package/@lezer/go
|
|
69
|
-
* https://www.npmjs.com/package/@lezer/javascript
|
|
70
|
-
* https://www.npmjs.com/package/@lezer/java
|
|
71
|
-
* https://www.npmjs.com/package/@lezer/lr
|
|
72
|
-
* https://www.npmjs.com/package/@lezer/json
|
|
73
|
-
* https://www.npmjs.com/package/@lezer/php
|
|
74
|
-
* https://www.npmjs.com/package/@lezer/markdown
|
|
75
|
-
* https://www.npmjs.com/package/@lezer/sass
|
|
76
|
-
* https://www.npmjs.com/package/@lezer/rust
|
|
77
|
-
* https://www.npmjs.com/package/@lezer/xml
|
|
78
|
-
* https://www.npmjs.com/package/@lezer/yaml
|
|
79
|
-
* https://www.npmjs.com/package/@lezer/python
|
|
80
|
-
* https://www.npmjs.com/package/@lezer/css
|
|
81
|
-
* https://www.npmjs.com/package/@internationalized/number
|
|
82
|
-
* https://www.npmjs.com/package/linkify-it
|
|
83
|
-
* https://www.npmjs.com/package/mdurl
|
|
84
|
-
* https://www.npmjs.com/package/punycode.js
|
|
85
|
-
* https://www.npmjs.com/package/uc.micro
|
|
86
|
-
* https://www.npmjs.com/package/@floating-ui/dom
|
|
87
|
-
* https://www.npmjs.com/package/@floating-ui/core
|
|
88
|
-
* https://www.npmjs.com/package/@floating-ui/utils
|
|
89
|
-
*/
|
|
90
|
-
|
|
91
|
-
function e(e,t,r){return t(r),r(e,t)}var t=/[a-z_]/,r=/[A-Z]/,n=/\d/,a=/[0-9A-Fa-f]/,i=/[0-7]/,o=/[a-z_A-Z0-9'\xa1-\uffff]/,l=/[-!#$%&*+.\/<=>?@\\^|~:]/,u=/[(),;[\]`{}]/,s=/[ \t\v\f]/;function f(f,m){if(f.eatWhile(s))return null;var h=f.next();if(u.test(h)){if("{"==h&&f.eat("-")){var p="comment";return f.eat("#")&&(p="meta"),e(f,m,c(p,1))}return null}if("'"==h)return f.eat("\\"),f.next(),f.eat("'")?"string":"error";if('"'==h)return e(f,m,d);if(r.test(h))return f.eatWhile(o),f.eat(".")?"qualifier":"type";if(t.test(h))return f.eatWhile(o),"variable";if(n.test(h)){if("0"==h){if(f.eat(/[xX]/))return f.eatWhile(a),"integer";if(f.eat(/[oO]/))return f.eatWhile(i),"number"}f.eatWhile(n);p="number";return f.match(/^\.\d+/)&&(p="number"),f.eat(/[eE]/)&&(p="number",f.eat(/[-+]/),f.eatWhile(n)),p}return"."==h&&f.eat(".")?"keyword":l.test(h)?"-"==h&&f.eat(/-/)&&(f.eatWhile(/-/),!f.eat(l))?(f.skipToEnd(),"comment"):(f.eatWhile(l),"variable"):"error"}function c(e,t){return 0==t?f:function(r,n){for(var a=t;!r.eol();){var i=r.next();if("{"==i&&r.eat("-"))++a;else if("-"==i&&r.eat("}")&&0==--a)return n(f),e}return n(c(e,a)),e}}function d(e,t){for(;!e.eol();){var r=e.next();if('"'==r)return t(f),"string";if("\\"==r){if(e.eol()||e.eat(s))return t(m),"string";e.eat("&")||e.next()}}return t(f),"error"}function m(t,r){return t.eat("\\")?e(t,r,d):(t.next(),r(f),"error")}var h=function(){var e={};function t(t){return function(){for(var r=0;r<arguments.length;r++)e[arguments[r]]=t}}return t("keyword")("case","class","data","default","deriving","do","else","foreign","if","import","in","infix","infixl","infixr","instance","let","module","newtype","of","then","type","where","_"),t("keyword")("..",":","::","=","\\","<-","->","@","~","=>"),t("builtin")("!!","$!","$","&&","+","++","-",".","/","/=","<","<*","<=","<$>","<*>","=<<","==",">",">=",">>",">>=","^","^^","||","*","*>","**"),t("builtin")("Applicative","Bool","Bounded","Char","Double","EQ","Either","Enum","Eq","False","FilePath","Float","Floating","Fractional","Functor","GT","IO","IOError","Int","Integer","Integral","Just","LT","Left","Maybe","Monad","Nothing","Num","Ord","Ordering","Rational","Read","ReadS","Real","RealFloat","RealFrac","Right","Show","ShowS","String","True"),t("builtin")("abs","acos","acosh","all","and","any","appendFile","asTypeOf","asin","asinh","atan","atan2","atanh","break","catch","ceiling","compare","concat","concatMap","const","cos","cosh","curry","cycle","decodeFloat","div","divMod","drop","dropWhile","either","elem","encodeFloat","enumFrom","enumFromThen","enumFromThenTo","enumFromTo","error","even","exp","exponent","fail","filter","flip","floatDigits","floatRadix","floatRange","floor","fmap","foldl","foldl1","foldr","foldr1","fromEnum","fromInteger","fromIntegral","fromRational","fst","gcd","getChar","getContents","getLine","head","id","init","interact","ioError","isDenormalized","isIEEE","isInfinite","isNaN","isNegativeZero","iterate","last","lcm","length","lex","lines","log","logBase","lookup","map","mapM","mapM_","max","maxBound","maximum","maybe","min","minBound","minimum","mod","negate","not","notElem","null","odd","or","otherwise","pi","pred","print","product","properFraction","pure","putChar","putStr","putStrLn","quot","quotRem","read","readFile","readIO","readList","readLn","readParen","reads","readsPrec","realToFrac","recip","rem","repeat","replicate","return","reverse","round","scaleFloat","scanl","scanl1","scanr","scanr1","seq","sequence","sequence_","show","showChar","showList","showParen","showString","shows","showsPrec","significand","signum","sin","sinh","snd","span","splitAt","sqrt","subtract","succ","sum","tail","take","takeWhile","tan","tanh","toEnum","toInteger","toRational","truncate","uncurry","undefined","unlines","until","unwords","unzip","unzip3","userError","words","writeFile","zip","zip3","zipWith","zipWith3"),e}();const p={name:"haskell",startState:function(){return{f:f}},copyState:function(e){return{f:e.f}},token:function(e,t){var r=t.f(e,function(e){t.f=e}),n=e.current();return h.hasOwnProperty(n)?h[n]:r},languageData:{commentTokens:{line:"--",block:{open:"{-",close:"-}"}}}};export{p as haskell};
|
package/dist/haxe-D47ScCJn.js
DELETED
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
*
|
|
4
|
-
* Copyright IBM Corp. 2025
|
|
5
|
-
*
|
|
6
|
-
* This source code is licensed under the Apache-2.0 license found in the
|
|
7
|
-
* LICENSE file in the root directory of this source tree.
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* @license
|
|
11
|
-
*
|
|
12
|
-
* This bundle contains the following third-party dependencies:
|
|
13
|
-
*
|
|
14
|
-
* Also refer to the following links for the license of other third-party dependencies:
|
|
15
|
-
*
|
|
16
|
-
* https://www.npmjs.com/package/tslib
|
|
17
|
-
* https://www.npmjs.com/package/lit
|
|
18
|
-
* https://www.npmjs.com/package/markdown-it
|
|
19
|
-
* https://www.npmjs.com/package/lodash-es
|
|
20
|
-
* https://www.npmjs.com/package/dompurify
|
|
21
|
-
* https://www.npmjs.com/package/@codemirror/state
|
|
22
|
-
* https://www.npmjs.com/package/csv-stringify
|
|
23
|
-
* https://www.npmjs.com/package/lit-html
|
|
24
|
-
* https://www.npmjs.com/package/@carbon/web-components
|
|
25
|
-
* https://www.npmjs.com/package/codemirror
|
|
26
|
-
* https://www.npmjs.com/package/@codemirror/language
|
|
27
|
-
* https://www.npmjs.com/package/@codemirror/lang-cpp
|
|
28
|
-
* https://www.npmjs.com/package/@codemirror/lang-go
|
|
29
|
-
* https://www.npmjs.com/package/@codemirror/lang-html
|
|
30
|
-
* https://www.npmjs.com/package/@codemirror/lang-javascript
|
|
31
|
-
* https://www.npmjs.com/package/@codemirror/lang-sql
|
|
32
|
-
* https://www.npmjs.com/package/@codemirror/lang-css
|
|
33
|
-
* https://www.npmjs.com/package/@codemirror/lang-java
|
|
34
|
-
* https://www.npmjs.com/package/@codemirror/lang-jinja
|
|
35
|
-
* https://www.npmjs.com/package/@codemirror/lang-json
|
|
36
|
-
* https://www.npmjs.com/package/@codemirror/lang-less
|
|
37
|
-
* https://www.npmjs.com/package/@codemirror/lang-php
|
|
38
|
-
* https://www.npmjs.com/package/@codemirror/lang-sass
|
|
39
|
-
* https://www.npmjs.com/package/@codemirror/lang-markdown
|
|
40
|
-
* https://www.npmjs.com/package/@codemirror/lang-rust
|
|
41
|
-
* https://www.npmjs.com/package/@codemirror/lang-wast
|
|
42
|
-
* https://www.npmjs.com/package/@codemirror/lang-liquid
|
|
43
|
-
* https://www.npmjs.com/package/@codemirror/legacy-modes
|
|
44
|
-
* https://www.npmjs.com/package/@codemirror/lang-yaml
|
|
45
|
-
* https://www.npmjs.com/package/@codemirror/lang-xml
|
|
46
|
-
* https://www.npmjs.com/package/@codemirror/lang-python
|
|
47
|
-
* https://www.npmjs.com/package/@codemirror/lang-angular
|
|
48
|
-
* https://www.npmjs.com/package/@codemirror/lang-vue
|
|
49
|
-
* https://www.npmjs.com/package/@codemirror/autocomplete
|
|
50
|
-
* https://www.npmjs.com/package/@codemirror/view
|
|
51
|
-
* https://www.npmjs.com/package/@codemirror/lint
|
|
52
|
-
* https://www.npmjs.com/package/@codemirror/commands
|
|
53
|
-
* https://www.npmjs.com/package/@lezer/highlight
|
|
54
|
-
* https://www.npmjs.com/package/@carbon/icons
|
|
55
|
-
* https://www.npmjs.com/package/@carbon/utilities
|
|
56
|
-
* https://www.npmjs.com/package/@carbon/icon-helpers
|
|
57
|
-
* https://www.npmjs.com/package/program-language-detector
|
|
58
|
-
* https://www.npmjs.com/package/lit-element
|
|
59
|
-
* https://www.npmjs.com/package/@lit/reactive-element
|
|
60
|
-
* https://www.npmjs.com/package/@marijn/find-cluster-break
|
|
61
|
-
* https://www.npmjs.com/package/@codemirror/search
|
|
62
|
-
* https://www.npmjs.com/package/crelt
|
|
63
|
-
* https://www.npmjs.com/package/w3c-keyname
|
|
64
|
-
* https://www.npmjs.com/package/style-mod
|
|
65
|
-
* https://www.npmjs.com/package/@lezer/common
|
|
66
|
-
* https://www.npmjs.com/package/@lezer/cpp
|
|
67
|
-
* https://www.npmjs.com/package/@lezer/html
|
|
68
|
-
* https://www.npmjs.com/package/@lezer/go
|
|
69
|
-
* https://www.npmjs.com/package/@lezer/javascript
|
|
70
|
-
* https://www.npmjs.com/package/@lezer/java
|
|
71
|
-
* https://www.npmjs.com/package/@lezer/lr
|
|
72
|
-
* https://www.npmjs.com/package/@lezer/json
|
|
73
|
-
* https://www.npmjs.com/package/@lezer/php
|
|
74
|
-
* https://www.npmjs.com/package/@lezer/markdown
|
|
75
|
-
* https://www.npmjs.com/package/@lezer/sass
|
|
76
|
-
* https://www.npmjs.com/package/@lezer/rust
|
|
77
|
-
* https://www.npmjs.com/package/@lezer/xml
|
|
78
|
-
* https://www.npmjs.com/package/@lezer/yaml
|
|
79
|
-
* https://www.npmjs.com/package/@lezer/python
|
|
80
|
-
* https://www.npmjs.com/package/@lezer/css
|
|
81
|
-
* https://www.npmjs.com/package/@internationalized/number
|
|
82
|
-
* https://www.npmjs.com/package/linkify-it
|
|
83
|
-
* https://www.npmjs.com/package/mdurl
|
|
84
|
-
* https://www.npmjs.com/package/punycode.js
|
|
85
|
-
* https://www.npmjs.com/package/uc.micro
|
|
86
|
-
* https://www.npmjs.com/package/@floating-ui/dom
|
|
87
|
-
* https://www.npmjs.com/package/@floating-ui/core
|
|
88
|
-
* https://www.npmjs.com/package/@floating-ui/utils
|
|
89
|
-
*/
|
|
90
|
-
|
|
91
|
-
function t(t){return{type:t,style:"keyword"}}var e,n=t("keyword a"),r=t("keyword b"),a=t("keyword c"),i=t("operator"),o={type:"atom",style:"atom"},l={type:"attribute",style:"attribute"},u=t("typedef"),c={if:n,while:n,else:r,do:r,try:r,return:a,break:a,continue:a,new:a,throw:a,var:t("var"),inline:l,static:l,using:t("import"),public:l,private:l,cast:t("cast"),import:t("import"),macro:t("macro"),function:t("function"),catch:t("catch"),untyped:t("untyped"),callback:t("cb"),for:t("for"),switch:t("switch"),case:t("case"),default:t("default"),in:i,never:t("property_access"),trace:t("trace"),class:u,abstract:u,enum:u,interface:u,typedef:u,extends:u,implements:u,dynamic:u,true:o,false:o,null:o},f=/[+\-*&%=<>!?|]/;function s(t,e,n){return e.tokenize=n,n(t,e)}function d(t,e){for(var n,r=!1;null!=(n=t.next());){if(n==e&&!r)return!0;r=!r&&"\\"==n}}function p(t,n,r){return u=t,e=r,n}function m(t,e){var n=t.next();if('"'==n||"'"==n)return s(t,e,(r=n,function(t,e){return d(t,r)&&(e.tokenize=m),p("string","string")}));if(/[\[\]{}\(\),;\:\.]/.test(n))return p(n);if("0"==n&&t.eat(/x/i))return t.eatWhile(/[\da-f]/i),p("number","number");if(/\d/.test(n)||"-"==n&&t.eat(/\d/))return t.match(/^\d*(?:\.\d*(?!\.))?(?:[eE][+\-]?\d+)?/),p("number","number");if(e.reAllowed&&"~"==n&&t.eat(/\//))return d(t,"/"),t.eatWhile(/[gimsu]/),p("regexp","string.special");if("/"==n)return t.eat("*")?s(t,e,v):t.eat("/")?(t.skipToEnd(),p("comment","comment")):(t.eatWhile(f),p("operator",null,t.current()));if("#"==n)return t.skipToEnd(),p("conditional","meta");if("@"==n)return t.eat(/:/),t.eatWhile(/[\w_]/),p("metadata","meta");if(f.test(n))return t.eatWhile(f),p("operator",null,t.current());if(/[A-Z]/.test(n))return t.eatWhile(/[\w_<>]/),p("type","type",a=t.current());t.eatWhile(/[\w_]/);var r,a=t.current(),i=c.propertyIsEnumerable(a)&&c[a];return i&&e.kwAllowed?p(i.type,i.style,a):p("variable","variable",a)}function v(t,e){for(var n,r=!1;n=t.next();){if("/"==n&&r){e.tokenize=m;break}r="*"==n}return p("comment","comment")}var y={atom:!0,number:!0,variable:!0,string:!0,regexp:!0};function b(t,e,n,r,a,i){this.indented=t,this.column=e,this.type=n,this.prev=a,this.info=i,null!=r&&(this.align=r)}function h(t,e){for(var n=t.localVars;n;n=n.next)if(n.name==e)return!0}function k(t,e){if(/[a-z]/.test(e.charAt(0)))return!1;for(var n=t.importedtypes.length,r=0;r<n;r++)if(t.importedtypes[r]==e)return!0}function x(t){for(var e=w.state,n=e.importedtypes;n;n=n.next)if(n.name==t)return;e.importedtypes={name:t,next:e.importedtypes}}var w={state:null,marked:null,cc:null};function g(){for(var t=arguments.length-1;t>=0;t--)w.cc.push(arguments[t])}function A(){return g.apply(null,arguments),!0}function V(t,e){for(var n=e;n;n=n.next)if(n.name==t)return!0;return!1}function S(t){var e=w.state;if(e.context){if(w.marked="def",V(t,e.localVars))return;e.localVars={name:t,next:e.localVars}}else if(e.globalVars){if(V(t,e.globalVars))return;e.globalVars={name:t,next:e.globalVars}}}var W={name:"this",next:null};function z(){w.state.context||(w.state.localVars=W),w.state.context={prev:w.state.context,vars:w.state.localVars}}function T(){w.state.localVars=w.state.context.vars,w.state.context=w.state.context.prev}function E(t,e){var n=function(){var n=w.state;n.lexical=new b(n.indented,w.stream.column(),t,null,n.lexical,e)};return n.lex=!0,n}function D(){var t=w.state;t.lexical.prev&&(")"==t.lexical.type&&(t.indented=t.lexical.indented),t.lexical=t.lexical.prev)}function O(t){return function e(n){return n==t?A():";"==t?g():A(e)}}function Z(t){return"@"==t?A($):"var"==t?A(E("vardef"),K,O(";"),D):"keyword a"==t?A(E("form"),P,Z,D):"keyword b"==t?A(E("form"),Z,D):"{"==t?A(E("}"),z,J,D,T):";"==t?A():"attribute"==t?A(N):"function"==t?A(R):"for"==t?A(E("form"),O("("),E(")"),M,O(")"),D,Z,D):"variable"==t?A(E("stat"),q):"switch"==t?A(E("form"),P,E("}","switch"),O("{"),J,D,D):"case"==t?A(P,O(":")):"default"==t?A(O(":")):"catch"==t?A(E("form"),z,O("("),tt,O(")"),Z,D,T):"import"==t?A(F,O(";")):"typedef"==t?A(j):g(E("stat"),P,O(";"),D)}function P(t){return y.hasOwnProperty(t)||"type"==t?A(I):"function"==t?A(R):"keyword c"==t?A(_):"("==t?A(E(")"),_,O(")"),D,I):"operator"==t?A(P):"["==t?A(E("]"),H(_,"]"),D,I):"{"==t?A(E("}"),H(G,"}"),D,I):A()}function _(t){return t.match(/[;\}\)\],]/)?g():g(P)}function I(t,e){return"operator"==t&&/\+\+|--/.test(e)?A(I):"operator"==t||":"==t?A(P):";"!=t?"("==t?A(E(")"),H(P,")"),D,I):"."==t?A(C,I):"["==t?A(E("]"),P,O("]"),D,I):void 0:void 0}function N(t){return"attribute"==t?A(N):"function"==t?A(R):"var"==t?A(K):void 0}function $(t){return":"==t||"variable"==t?A($):"("==t?A(E(")"),H(B,")"),D,Z):void 0}function B(t){if("variable"==t)return A()}function F(t,e){return"variable"==t&&/[A-Z]/.test(e.charAt(0))?(x(e),A()):"variable"==t||"property"==t||"."==t||"*"==e?A(F):void 0}function j(t,e){return"variable"==t&&/[A-Z]/.test(e.charAt(0))?(x(e),A()):"type"==t&&/[A-Z]/.test(e.charAt(0))?A():void 0}function q(t){return":"==t?A(D,Z):g(I,O(";"),D)}function C(t){if("variable"==t)return w.marked="property",A()}function G(t){if("variable"==t&&(w.marked="property"),y.hasOwnProperty(t))return A(O(":"),P)}function H(t,e){function n(r){return","==r?A(t,n):r==e?A():A(O(e))}return function(r){return r==e?A():g(t,n)}}function J(t){return"}"==t?A():g(Z,J)}function K(t,e){return"variable"==t?(S(e),A(U,L)):A()}function L(t,e){return"="==e?A(P,L):","==t?A(K):void 0}function M(t,e){return"variable"==t?(S(e),A(Q,P)):g()}function Q(t,e){if("in"==e)return A()}function R(t,e){return"variable"==t||"type"==t?(S(e),A(R)):"new"==e?A(R):"("==t?A(E(")"),z,H(tt,")"),D,U,Z,T):void 0}function U(t){if(":"==t)return A(X)}function X(t){return"type"==t||"variable"==t?A():"{"==t?A(E("}"),H(Y,"}"),D):void 0}function Y(t){if("variable"==t)return A(U)}function tt(t,e){if("variable"==t)return S(e),A(U)}T.lex=!0,D.lex=!0;const et={name:"haxe",startState:function(t){return{tokenize:m,reAllowed:!0,kwAllowed:!0,cc:[],lexical:new b(-t,0,"block",!1),importedtypes:["Int","Float","String","Void","Std","Bool","Dynamic","Array"],context:null,indented:0}},token:function(t,n){if(t.sol()&&(n.lexical.hasOwnProperty("align")||(n.lexical.align=!1),n.indented=t.indentation()),t.eatSpace())return null;var r=n.tokenize(t,n);return"comment"==u?r:(n.reAllowed=!("operator"!=u&&"keyword c"!=u&&!u.match(/^[\[{}\(,;:]$/)),n.kwAllowed="."!=u,function(t,e,n,r,a){var i=t.cc;for(w.state=t,w.stream=a,w.marked=null,w.cc=i,t.lexical.hasOwnProperty("align")||(t.lexical.align=!0);;)if((i.length?i.pop():Z)(n,r)){for(;i.length&&i[i.length-1].lex;)i.pop()();return w.marked?w.marked:"variable"==n&&h(t,r)?"variableName.local":"variable"==n&&k(t,r)?"variableName.special":e}}(n,r,u,e,t))},indent:function(t,e,n){if(t.tokenize!=m)return 0;var r=e&&e.charAt(0),a=t.lexical;"stat"==a.type&&"}"==r&&(a=a.prev);var i=a.type,o=r==i;return"vardef"==i?a.indented+4:"form"==i&&"{"==r?a.indented:"stat"==i||"form"==i?a.indented+n.unit:"switch"!=a.info||o?a.align?a.column+(o?0:1):a.indented+(o?0:n.unit):a.indented+(/^(?:case|default)\b/.test(e)?n.unit:2*n.unit)},languageData:{indentOnInput:/^\s*[{}]$/,commentTokens:{line:"//",block:{open:"/*",close:"*/"}}}},nt={name:"hxml",startState:function(){return{define:!1,inString:!1}},token:function(t,e){var n=t.peek(),r=t.sol();if("#"==n)return t.skipToEnd(),"comment";if(r&&"-"==n){var a="variable-2";return t.eat(/-/),"-"==t.peek()&&(t.eat(/-/),a="keyword a"),"D"==t.peek()&&(t.eat(/[D]/),a="keyword c",e.define=!0),t.eatWhile(/[A-Z]/i),a}n=t.peek();return 0==e.inString&&"'"==n&&(e.inString=!0,t.next()),1==e.inString?(t.skipTo("'")||t.skipToEnd(),"'"==t.peek()&&(t.next(),e.inString=!1),"string"):(t.next(),null)},languageData:{commentTokens:{line:"#"}}};export{et as haxe,nt as hxml};
|
package/dist/http-CQ5YdFwi.js
DELETED
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
*
|
|
4
|
-
* Copyright IBM Corp. 2025
|
|
5
|
-
*
|
|
6
|
-
* This source code is licensed under the Apache-2.0 license found in the
|
|
7
|
-
* LICENSE file in the root directory of this source tree.
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* @license
|
|
11
|
-
*
|
|
12
|
-
* This bundle contains the following third-party dependencies:
|
|
13
|
-
*
|
|
14
|
-
* Also refer to the following links for the license of other third-party dependencies:
|
|
15
|
-
*
|
|
16
|
-
* https://www.npmjs.com/package/tslib
|
|
17
|
-
* https://www.npmjs.com/package/lit
|
|
18
|
-
* https://www.npmjs.com/package/markdown-it
|
|
19
|
-
* https://www.npmjs.com/package/lodash-es
|
|
20
|
-
* https://www.npmjs.com/package/dompurify
|
|
21
|
-
* https://www.npmjs.com/package/@codemirror/state
|
|
22
|
-
* https://www.npmjs.com/package/csv-stringify
|
|
23
|
-
* https://www.npmjs.com/package/lit-html
|
|
24
|
-
* https://www.npmjs.com/package/@carbon/web-components
|
|
25
|
-
* https://www.npmjs.com/package/codemirror
|
|
26
|
-
* https://www.npmjs.com/package/@codemirror/language
|
|
27
|
-
* https://www.npmjs.com/package/@codemirror/lang-cpp
|
|
28
|
-
* https://www.npmjs.com/package/@codemirror/lang-go
|
|
29
|
-
* https://www.npmjs.com/package/@codemirror/lang-html
|
|
30
|
-
* https://www.npmjs.com/package/@codemirror/lang-javascript
|
|
31
|
-
* https://www.npmjs.com/package/@codemirror/lang-sql
|
|
32
|
-
* https://www.npmjs.com/package/@codemirror/lang-css
|
|
33
|
-
* https://www.npmjs.com/package/@codemirror/lang-java
|
|
34
|
-
* https://www.npmjs.com/package/@codemirror/lang-jinja
|
|
35
|
-
* https://www.npmjs.com/package/@codemirror/lang-json
|
|
36
|
-
* https://www.npmjs.com/package/@codemirror/lang-less
|
|
37
|
-
* https://www.npmjs.com/package/@codemirror/lang-php
|
|
38
|
-
* https://www.npmjs.com/package/@codemirror/lang-sass
|
|
39
|
-
* https://www.npmjs.com/package/@codemirror/lang-markdown
|
|
40
|
-
* https://www.npmjs.com/package/@codemirror/lang-rust
|
|
41
|
-
* https://www.npmjs.com/package/@codemirror/lang-wast
|
|
42
|
-
* https://www.npmjs.com/package/@codemirror/lang-liquid
|
|
43
|
-
* https://www.npmjs.com/package/@codemirror/legacy-modes
|
|
44
|
-
* https://www.npmjs.com/package/@codemirror/lang-yaml
|
|
45
|
-
* https://www.npmjs.com/package/@codemirror/lang-xml
|
|
46
|
-
* https://www.npmjs.com/package/@codemirror/lang-python
|
|
47
|
-
* https://www.npmjs.com/package/@codemirror/lang-angular
|
|
48
|
-
* https://www.npmjs.com/package/@codemirror/lang-vue
|
|
49
|
-
* https://www.npmjs.com/package/@codemirror/autocomplete
|
|
50
|
-
* https://www.npmjs.com/package/@codemirror/view
|
|
51
|
-
* https://www.npmjs.com/package/@codemirror/lint
|
|
52
|
-
* https://www.npmjs.com/package/@codemirror/commands
|
|
53
|
-
* https://www.npmjs.com/package/@lezer/highlight
|
|
54
|
-
* https://www.npmjs.com/package/@carbon/icons
|
|
55
|
-
* https://www.npmjs.com/package/@carbon/utilities
|
|
56
|
-
* https://www.npmjs.com/package/@carbon/icon-helpers
|
|
57
|
-
* https://www.npmjs.com/package/program-language-detector
|
|
58
|
-
* https://www.npmjs.com/package/lit-element
|
|
59
|
-
* https://www.npmjs.com/package/@lit/reactive-element
|
|
60
|
-
* https://www.npmjs.com/package/@marijn/find-cluster-break
|
|
61
|
-
* https://www.npmjs.com/package/@codemirror/search
|
|
62
|
-
* https://www.npmjs.com/package/crelt
|
|
63
|
-
* https://www.npmjs.com/package/w3c-keyname
|
|
64
|
-
* https://www.npmjs.com/package/style-mod
|
|
65
|
-
* https://www.npmjs.com/package/@lezer/common
|
|
66
|
-
* https://www.npmjs.com/package/@lezer/cpp
|
|
67
|
-
* https://www.npmjs.com/package/@lezer/html
|
|
68
|
-
* https://www.npmjs.com/package/@lezer/go
|
|
69
|
-
* https://www.npmjs.com/package/@lezer/javascript
|
|
70
|
-
* https://www.npmjs.com/package/@lezer/java
|
|
71
|
-
* https://www.npmjs.com/package/@lezer/lr
|
|
72
|
-
* https://www.npmjs.com/package/@lezer/json
|
|
73
|
-
* https://www.npmjs.com/package/@lezer/php
|
|
74
|
-
* https://www.npmjs.com/package/@lezer/markdown
|
|
75
|
-
* https://www.npmjs.com/package/@lezer/sass
|
|
76
|
-
* https://www.npmjs.com/package/@lezer/rust
|
|
77
|
-
* https://www.npmjs.com/package/@lezer/xml
|
|
78
|
-
* https://www.npmjs.com/package/@lezer/yaml
|
|
79
|
-
* https://www.npmjs.com/package/@lezer/python
|
|
80
|
-
* https://www.npmjs.com/package/@lezer/css
|
|
81
|
-
* https://www.npmjs.com/package/@internationalized/number
|
|
82
|
-
* https://www.npmjs.com/package/linkify-it
|
|
83
|
-
* https://www.npmjs.com/package/mdurl
|
|
84
|
-
* https://www.npmjs.com/package/punycode.js
|
|
85
|
-
* https://www.npmjs.com/package/uc.micro
|
|
86
|
-
* https://www.npmjs.com/package/@floating-ui/dom
|
|
87
|
-
* https://www.npmjs.com/package/@floating-ui/core
|
|
88
|
-
* https://www.npmjs.com/package/@floating-ui/utils
|
|
89
|
-
*/
|
|
90
|
-
|
|
91
|
-
function r(r,n){return r.skipToEnd(),n.cur=o,"error"}function n(n,u){return n.match(/^HTTP\/\d\.\d/)?(u.cur=t,"keyword"):n.match(/^[A-Z]+/)&&/[ \t]/.test(n.peek())?(u.cur=e,"keyword"):r(n,u)}function t(n,t){var e=n.match(/^\d+/);if(!e)return r(n,t);t.cur=u;var c=Number(e[0]);return c>=100&&c<400?"atom":"error"}function u(r,n){return r.skipToEnd(),n.cur=o,null}function e(r,n){return r.eatWhile(/\S/),n.cur=c,"string.special"}function c(n,t){return n.match(/^HTTP\/\d\.\d$/)?(t.cur=o,"keyword"):r(n,t)}function o(r){return r.sol()&&!r.eat(/[ \t]/)?r.match(/^.*?:/)?"atom":(r.skipToEnd(),"error"):(r.skipToEnd(),"string")}function i(r){return r.skipToEnd(),null}const a={name:"http",token:function(r,n){var t=n.cur;return t!=o&&t!=i&&r.eatSpace()?null:t(r,n)},blankLine:function(r){r.cur=i},startState:function(){return{cur:n}}};export{a as http};
|