@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/ttcn-dBogkyiy.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){for(var t={},n=e.split(" "),r=0;r<n.length;++r)t[n[r]]=!0;return t}const t={keywords:e("activate address alive all alt altstep and and4b any break case component const continue control deactivate display do else encode enumerated except exception execute extends extension external for from function goto group if import in infinity inout interleave label language length log match message mixed mod modifies module modulepar mtc noblock not not4b nowait of on optional or or4b out override param pattern port procedure record recursive rem repeat return runs select self sender set signature system template testcase to type union value valueof var variant while with xor xor4b"),builtin:e("bit2hex bit2int bit2oct bit2str char2int char2oct encvalue decomp decvalue float2int float2str hex2bit hex2int hex2oct hex2str int2bit int2char int2float int2hex int2oct int2str int2unichar isbound ischosen ispresent isvalue lengthof log2str oct2bit oct2char oct2hex oct2int oct2str regexp replace rnd sizeof str2bit str2float str2hex str2int str2oct substr unichar2int unichar2char enum2int"),types:e("anytype bitstring boolean char charstring default float hexstring integer objid octetstring universal verdicttype timer"),timerOps:e("read running start stop timeout"),portOps:e("call catch check clear getcall getreply halt raise receive reply send trigger"),configOps:e("create connect disconnect done kill killed map unmap"),verdictOps:e("getverdict setverdict"),sutOps:e("action"),functionOps:e("apply derefers refers"),verdictConsts:e("error fail inconc none pass"),booleanConsts:e("true false"),otherConsts:e("null NULL omit"),visibilityModifiers:e("private public friend"),templateMatch:e("complement ifpresent subset superset permutation")};var n=[];function r(e){if(e)for(var t in e)e.hasOwnProperty(t)&&n.push(t)}r(t.keywords),r(t.builtin),r(t.timerOps),r(t.portOps);var i,o=t.keywords||{},a=t.builtin||{},s=t.timerOps||{},l=t.portOps||{},c=t.configOps||{},p=t.verdictOps||{},u=t.sutOps||{},m=t.functionOps||{},f=t.verdictConsts||{},d=t.booleanConsts||{},b=t.otherConsts||{},h=t.types||{},y=t.visibilityModifiers||{},v=t.templateMatch||{},x=!1!==t.indentStatements,g=/[+\-*&@=<>!\/]/;function k(e,t){var n,r=e.next();if('"'==r||"'"==r)return t.tokenize=(n=r,function(e,t){for(var r,i=!1,o=!1;null!=(r=e.next());){if(r==n&&!i){var a=e.peek();a&&("b"!=(a=a.toLowerCase())&&"h"!=a&&"o"!=a||e.next()),o=!0;break}i=!i&&"\\"==r}return o&&(t.tokenize=null),"string"}),t.tokenize(e,t);if(/[\[\]{}\(\),;\\:\?\.]/.test(r))return i=r,"punctuation";if("#"==r)return e.skipToEnd(),"atom";if("%"==r)return e.eatWhile(/\b/),"atom";if(/\d/.test(r))return e.eatWhile(/[\w\.]/),"number";if("/"==r){if(e.eat("*"))return t.tokenize=O,O(e,t);if(e.eat("/"))return e.skipToEnd(),"comment"}if(g.test(r))return"@"==r&&(e.match("try")||e.match("catch")||e.match("lazy"))?"keyword":(e.eatWhile(g),"operator");e.eatWhile(/[\w\$_\xa1-\uffff]/);var x=e.current();return o.propertyIsEnumerable(x)?"keyword":a.propertyIsEnumerable(x)?"builtin":s.propertyIsEnumerable(x)||c.propertyIsEnumerable(x)||p.propertyIsEnumerable(x)||l.propertyIsEnumerable(x)||u.propertyIsEnumerable(x)||m.propertyIsEnumerable(x)?"def":f.propertyIsEnumerable(x)||d.propertyIsEnumerable(x)||b.propertyIsEnumerable(x)?"string":h.propertyIsEnumerable(x)?"typeName.standard":y.propertyIsEnumerable(x)?"modifier":v.propertyIsEnumerable(x)?"atom":"variable"}function O(e,t){for(var n,r=!1;n=e.next();){if("/"==n&&r){t.tokenize=null;break}r="*"==n}return"comment"}function E(e,t,n,r,i){this.indented=e,this.column=t,this.type=n,this.align=r,this.prev=i}function w(e,t,n){var r=e.indented;return e.context&&"statement"==e.context.type&&(r=e.context.indented),e.context=new E(r,t,n,null,e.context)}function I(e){var t=e.context.type;return")"!=t&&"]"!=t&&"}"!=t||(e.indented=e.context.indented),e.context=e.context.prev}const z={name:"ttcn",startState:function(){return{tokenize:null,context:new E(0,0,"top",!1),indented:0,startOfLine:!0}},token:function(e,t){var n=t.context;if(e.sol()&&(null==n.align&&(n.align=!1),t.indented=e.indentation(),t.startOfLine=!0),e.eatSpace())return null;i=null;var r=(t.tokenize||k)(e,t);if("comment"==r)return r;if(null==n.align&&(n.align=!0),";"!=i&&":"!=i&&","!=i||"statement"!=n.type)if("{"==i)w(t,e.column(),"}");else if("["==i)w(t,e.column(),"]");else if("("==i)w(t,e.column(),")");else if("}"==i){for(;"statement"==n.type;)n=I(t);for("}"==n.type&&(n=I(t));"statement"==n.type;)n=I(t)}else i==n.type?I(t):x&&(("}"==n.type||"top"==n.type)&&";"!=i||"statement"==n.type&&"newstatement"==i)&&w(t,e.column(),"statement");else I(t);return t.startOfLine=!1,r},languageData:{indentOnInput:/^\s*[{}]$/,commentTokens:{line:"//",block:{open:"/*",close:"*/"}},autocomplete:n}};export{z as ttcn};
|
package/dist/turtle-qtDt5E0f.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
|
-
var t;function e(t){return new RegExp("^(?:"+t.join("|")+")$","i")}e([]);var n=e(["@prefix","@base","a"]),o=/[*+\-<>=&|]/;function r(e,i){var c,a=e.next();if(t=null,"<"!=a||e.match(/^[\s\u00a0=]/,!1)){if('"'==a||"'"==a)return i.tokenize=(c=a,function(t,e){for(var n,o=!1;null!=(n=t.next());){if(n==c&&!o){e.tokenize=r;break}o=!o&&"\\"==n}return"string"}),i.tokenize(e,i);if(/[{}\(\),\.;\[\]]/.test(a))return t=a,null;if("#"==a)return e.skipToEnd(),"comment";if(o.test(a))return e.eatWhile(o),null;if(":"==a)return"operator";if(e.eatWhile(/[_\w\d]/),":"==e.peek())return"variableName.special";var l=e.current();return n.test(l)?"meta":a>="A"&&a<="Z"?"comment":"keyword"}return e.match(/^[^\s\u00a0>]*>?/),"atom"}function i(t,e,n){t.context={prev:t.context,indent:t.indent,col:n,type:e}}function c(t){t.indent=t.context.indent,t.context=t.context.prev}const a={name:"turtle",startState:function(){return{tokenize:r,context:null,indent:0,col:0}},token:function(e,n){if(e.sol()&&(n.context&&null==n.context.align&&(n.context.align=!1),n.indent=e.indentation()),e.eatSpace())return null;var o=n.tokenize(e,n);if("comment"!=o&&n.context&&null==n.context.align&&"pattern"!=n.context.type&&(n.context.align=!0),"("==t)i(n,")",e.column());else if("["==t)i(n,"]",e.column());else if("{"==t)i(n,"}",e.column());else if(/[\]\}\)]/.test(t)){for(;n.context&&"pattern"==n.context.type;)c(n);n.context&&t==n.context.type&&c(n)}else"."==t&&n.context&&"pattern"==n.context.type?c(n):/atom|string|variable/.test(o)&&n.context&&(/[\}\]]/.test(n.context.type)?i(n,"pattern",e.column()):"pattern"!=n.context.type||n.context.align||(n.context.align=!0,n.context.col=e.column()));return o},indent:function(t,e,n){var o=e&&e.charAt(0),r=t.context;if(/[\]\}]/.test(o))for(;r&&"pattern"==r.type;)r=r.prev;var i=r&&o==r.type;return r?"pattern"==r.type?r.col:r.align?r.col+(i?0:1):r.indent+(i?0:n.unit):0},languageData:{commentTokens:{line:"#"}}};export{a as turtle};
|
package/dist/vb-h5NatM2n.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
|
-
var e="error";function t(e){return new RegExp("^(("+e.join(")|(")+"))\\b","i")}var n=new RegExp("^[\\+\\-\\*/%&\\\\|\\^~<>!]"),r=new RegExp("^[\\(\\)\\[\\]\\{\\}@,:`=;\\.]"),a=new RegExp("^((==)|(<>)|(<=)|(>=)|(<>)|(<<)|(>>)|(//)|(\\*\\*))"),i=new RegExp("^((\\+=)|(\\-=)|(\\*=)|(%=)|(/=)|(&=)|(\\|=)|(\\^=))"),o=new RegExp("^((//=)|(>>=)|(<<=)|(\\*\\*=))"),c=new RegExp("^[_A-Za-z][_A-Za-z0-9]*"),u=["class","module","sub","enum","select","while","if","function","get","set","property","try","structure","synclock","using","with"],s=["else","elseif","case","catch","finally"],l=["next","loop"],d=["and","andalso","or","orelse","xor","in","not","is","isnot","like"],m=t(d),h=["#const","#else","#elseif","#end","#if","#region","addhandler","addressof","alias","as","byref","byval","cbool","cbyte","cchar","cdate","cdbl","cdec","cint","clng","cobj","compare","const","continue","csbyte","cshort","csng","cstr","cuint","culng","cushort","declare","default","delegate","dim","directcast","each","erase","error","event","exit","explicit","false","for","friend","gettype","goto","handles","implements","imports","infer","inherits","interface","isfalse","istrue","lib","me","mod","mustinherit","mustoverride","my","mybase","myclass","namespace","narrowing","new","nothing","notinheritable","notoverridable","of","off","on","operator","option","optional","out","overloads","overridable","overrides","paramarray","partial","private","protected","public","raiseevent","readonly","redim","removehandler","resume","return","shadows","shared","static","step","stop","strict","then","throw","to","true","trycast","typeof","until","until","when","widening","withevents","writeonly"],f=["object","boolean","char","string","byte","sbyte","short","ushort","int16","uint16","integer","uinteger","int32","uint32","long","ulong","int64","uint64","decimal","single","double","float","date","datetime","intptr","uintptr"],p=t(h),g=t(f),b=t(u),y=t(s),v=t(l),k=t(["end"]),w=t(["do"]);function x(e,t){t.currentIndent++}function I(e,t){t.currentIndent--}function z(t,u){if(t.eatSpace())return null;var s,l,d;if("'"===t.peek())return t.skipToEnd(),"comment";if(t.match(/^((&H)|(&O))?[0-9\.a-f]/i,!1)){var h=!1;if((t.match(/^\d*\.\d+F?/i)||t.match(/^\d+\.\d*F?/)||t.match(/^\.\d+F?/))&&(h=!0),h)return t.eat(/J/i),"number";var f=!1;if(t.match(/^&H[0-9a-f]+/i)||t.match(/^&O[0-7]+/i)?f=!0:t.match(/^[1-9]\d*F?/)?(t.eat(/J/i),f=!0):t.match(/^0(?![\dx])/i)&&(f=!0),f)return t.eat(/L/i),"number"}return t.match('"')?(u.tokenize=(s=t.current(),l=1==s.length,d="string",function(e,t){for(;!e.eol();){if(e.eatWhile(/[^'"]/),e.match(s))return t.tokenize=z,d;e.eat(/['"]/)}return l&&(t.tokenize=z),d}),u.tokenize(t,u)):t.match(o)||t.match(i)?null:t.match(a)||t.match(n)||t.match(m)?"operator":t.match(r)?null:t.match(w)?(x(0,u),u.doInCurrentLine=!0,"keyword"):t.match(b)?(u.doInCurrentLine?u.doInCurrentLine=!1:x(0,u),"keyword"):t.match(y)?"keyword":t.match(k)?(I(0,u),I(0,u),"keyword"):t.match(v)?(I(0,u),"keyword"):t.match(g)||t.match(p)?"keyword":t.match(c)?"variable":(t.next(),e)}const L={name:"vb",startState:function(){return{tokenize:z,lastToken:null,currentIndent:0,nextLineIndent:0,doInCurrentLine:!1}},token:function(t,n){t.sol()&&(n.currentIndent+=n.nextLineIndent,n.nextLineIndent=0,n.doInCurrentLine=0);var r=function(t,n){var r=n.tokenize(t,n),a=t.current();if("."===a)return"variable"===(r=n.tokenize(t,n))?"variable":e;var i="[({".indexOf(a);return-1!==i&&x(0,n),-1!==(i="])}".indexOf(a))&&I(0,n)?e:r}(t,n);return n.lastToken={style:r,content:t.current()},r},indent:function(e,t,n){var r=t.replace(/^\s+|\s+$/g,"");return r.match(v)||r.match(k)||r.match(y)?n.unit*(e.currentIndent-1):e.currentIndent<0?0:e.currentIndent*n.unit},languageData:{closeBrackets:{brackets:["(","[","{",'"']},commentTokens:{line:"'"},autocomplete:u.concat(s).concat(l).concat(d).concat(h).concat(f)}};export{L as vb};
|
|
@@ -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){var t="error";function n(e){return new RegExp("^(("+e.join(")|(")+"))\\b","i")}var r=new RegExp("^[\\+\\-\\*/&\\\\\\^<>=]"),a=new RegExp("^((<>)|(<=)|(>=))"),i=new RegExp("^[\\.,]"),o=new RegExp("^[\\(\\)]"),c=new RegExp("^[A-Za-z][_A-Za-z0-9]*"),b=n(["and","or","not","xor","is","mod","eqv","imp"]),l=["WScript","err","debug","RegExp"],s=["clear","execute","raise","replace","test","write","writeline","close","open","state","eof","update","addnew","end","createobject","quit"].concat(["description","firstindex","global","helpcontext","helpfile","ignorecase","length","number","pattern","source","value","count"]);l=l.concat(["vbBlack","vbRed","vbGreen","vbYellow","vbBlue","vbMagenta","vbCyan","vbWhite","vbBinaryCompare","vbTextCompare","vbSunday","vbMonday","vbTuesday","vbWednesday","vbThursday","vbFriday","vbSaturday","vbUseSystemDayOfWeek","vbFirstJan1","vbFirstFourDays","vbFirstFullWeek","vbGeneralDate","vbLongDate","vbShortDate","vbLongTime","vbShortTime","vbObjectError","vbOKOnly","vbOKCancel","vbAbortRetryIgnore","vbYesNoCancel","vbYesNo","vbRetryCancel","vbCritical","vbQuestion","vbExclamation","vbInformation","vbDefaultButton1","vbDefaultButton2","vbDefaultButton3","vbDefaultButton4","vbApplicationModal","vbSystemModal","vbOK","vbCancel","vbAbort","vbRetry","vbIgnore","vbYes","vbNo","vbCr","VbCrLf","vbFormFeed","vbLf","vbNewLine","vbNullChar","vbNullString","vbTab","vbVerticalTab","vbUseDefault","vbTrue","vbFalse","vbEmpty","vbNull","vbInteger","vbLong","vbSingle","vbDouble","vbCurrency","vbDate","vbString","vbObject","vbError","vbBoolean","vbVariant","vbDataObject","vbDecimal","vbByte","vbArray"]),e.isASP&&(l=l.concat(["server","response","request","session","application"]),s=s.concat(["addheader","appendtolog","binarywrite","end","flush","redirect","binaryread","remove","removeall","lock","unlock","abandon","getlasterror","htmlencode","mappath","transfer","urlencode"],["buffer","cachecontrol","charset","contenttype","expires","expiresabsolute","isclientconnected","pics","status","clientcertificate","cookies","form","querystring","servervariables","totalbytes","contents","staticobjects","codepage","lcid","sessionid","timeout","scripttimeout"]));var u=n(["dim","redim","then","until","randomize","byval","byref","new","property","exit","in","const","private","public","get","set","let","stop","on error resume next","on error goto 0","option explicit","call","me"]),v=n(["true","false","nothing","empty","null"]),d=n(["abs","array","asc","atn","cbool","cbyte","ccur","cdate","cdbl","chr","cint","clng","cos","csng","cstr","date","dateadd","datediff","datepart","dateserial","datevalue","day","escape","eval","execute","exp","filter","formatcurrency","formatdatetime","formatnumber","formatpercent","getlocale","getobject","getref","hex","hour","inputbox","instr","instrrev","int","fix","isarray","isdate","isempty","isnull","isnumeric","isobject","join","lbound","lcase","left","len","loadpicture","log","ltrim","rtrim","trim","maths","mid","minute","month","monthname","msgbox","now","oct","replace","rgb","right","rnd","round","scriptengine","scriptenginebuildversion","scriptenginemajorversion","scriptengineminorversion","second","setlocale","sgn","sin","space","split","sqr","strcomp","string","strreverse","tan","time","timer","timeserial","timevalue","typename","ubound","ucase","unescape","vartype","weekday","weekdayname","year"]),m=n(l),p=n(s),h=n(["class","sub","select","while","if","function","property","with","for"]),f=n(["else","elseif","case"]),y=n(["next","loop","wend"]),g=n(["end"]),x=n(["do"]),k=n(["on error resume next","exit"]),w=n(["rem"]);function I(e,t){t.currentIndent++}function C(e,t){t.currentIndent--}function L(e,n){if(e.eatSpace())return null;var l,s,D;if("'"===e.peek())return e.skipToEnd(),"comment";if(e.match(w))return e.skipToEnd(),"comment";if(e.match(/^((&H)|(&O))?[0-9\.]/i,!1)&&!e.match(/^((&H)|(&O))?[0-9\.]+[a-z_]/i,!1)){var S=!1;if((e.match(/^\d*\.\d+/i)||e.match(/^\d+\.\d*/)||e.match(/^\.\d+/))&&(S=!0),S)return e.eat(/J/i),"number";var E=!1;if(e.match(/^&H[0-9a-f]+/i)||e.match(/^&O[0-7]+/i)?E=!0:e.match(/^[1-9]\d*F?/)?(e.eat(/J/i),E=!0):e.match(/^0(?![\dx])/i)&&(E=!0),E)return e.eat(/L/i),"number"}return e.match('"')?(n.tokenize=(l=e.current(),s=1==l.length,D="string",function(e,t){for(;!e.eol();){if(e.eatWhile(/[^'"]/),e.match(l))return t.tokenize=L,D;e.eat(/['"]/)}return s&&(t.tokenize=L),D}),n.tokenize(e,n)):e.match(a)||e.match(r)||e.match(b)?"operator":e.match(i)?null:e.match(o)?"bracket":e.match(k)?(n.doInCurrentLine=!0,"keyword"):e.match(x)?(I(0,n),n.doInCurrentLine=!0,"keyword"):e.match(h)?(n.doInCurrentLine?n.doInCurrentLine=!1:I(0,n),"keyword"):e.match(f)?"keyword":e.match(g)?(C(0,n),C(0,n),"keyword"):e.match(y)?(n.doInCurrentLine?n.doInCurrentLine=!1:C(0,n),"keyword"):e.match(u)?"keyword":e.match(v)?"atom":e.match(p)?"variableName.special":e.match(d)||e.match(m)?"builtin":e.match(c)?"variable":(e.next(),t)}return{name:"vbscript",startState:function(){return{tokenize:L,lastToken:null,currentIndent:0,nextLineIndent:0,doInCurrentLine:!1,ignoreKeyword:!1}},token:function(e,n){e.sol()&&(n.currentIndent+=n.nextLineIndent,n.nextLineIndent=0,n.doInCurrentLine=0);var r=function(e,n){var r=n.tokenize(e,n),a=e.current();return"."===a?(r=n.tokenize(e,n),a=e.current(),!r||"variable"!==r.substr(0,8)&&"builtin"!==r&&"keyword"!==r?t:("builtin"!==r&&"keyword"!==r||(r="variable"),s.indexOf(a.substr(1))>-1&&(r="keyword"),r)):r}(e,n);return n.lastToken={style:r,content:e.current()},null===r&&(r=null),r},indent:function(e,t,n){var r=t.replace(/^\s+|\s+$/g,"");return r.match(y)||r.match(g)||r.match(f)?n.unit*(e.currentIndent-1):e.currentIndent<0?0:e.currentIndent*n.unit}}}const t=e({});e({isASP:!0});export{t as vbScript};
|
|
@@ -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){for(var t={},n=e.split(" "),r=0;r<n.length;++r)t[n[r]]=!0;return t}var t=e("#end #else #break #stop #[[ #]] #{end} #{else} #{break} #{stop}"),n=e("#if #elseif #foreach #set #include #parse #macro #define #evaluate #{if} #{elseif} #{foreach} #{set} #{include} #{parse} #{macro} #{define} #{evaluate}"),r=e("$foreach.count $foreach.hasNext $foreach.first $foreach.last $foreach.topmost $foreach.parent.count $foreach.parent.hasNext $foreach.parent.first $foreach.parent.last $foreach.parent $velocityCount $!bodyContent $bodyContent"),a=/[+\-*&%=<>!?:\/|]/;function i(e,t,n){return t.tokenize=n,n(e,t)}function o(e,o){var f=o.beforeParams;o.beforeParams=!1;var c=e.next();if("'"==c&&!o.inString&&o.inParams)return o.lastTokenWasBuiltin=!1,i(e,o,s(c));if('"'!=c){if(/[\[\]{}\(\),;\.]/.test(c))return"("==c&&f?o.inParams=!0:")"==c&&(o.inParams=!1,o.lastTokenWasBuiltin=!0),null;if(/\d/.test(c))return o.lastTokenWasBuiltin=!1,e.eatWhile(/[\w\.]/),"number";if("#"==c&&e.eat("*"))return o.lastTokenWasBuiltin=!1,i(e,o,l);if("#"==c&&e.match(/ *\[ *\[/))return o.lastTokenWasBuiltin=!1,i(e,o,u);if("#"==c&&e.eat("#"))return o.lastTokenWasBuiltin=!1,e.skipToEnd(),"comment";if("$"==c)return e.eat("!"),e.eatWhile(/[\w\d\$_\.{}-]/),r&&r.propertyIsEnumerable(e.current())?"keyword":(o.lastTokenWasBuiltin=!0,o.beforeParams=!0,"builtin");if(a.test(c))return o.lastTokenWasBuiltin=!1,e.eatWhile(a),"operator";e.eatWhile(/[\w\$_{}@]/);var k=e.current();return t&&t.propertyIsEnumerable(k)?"keyword":n&&n.propertyIsEnumerable(k)||e.current().match(/^#@?[a-z0-9_]+ *$/i)&&"("==e.peek()&&(!n||!n.propertyIsEnumerable(k.toLowerCase()))?(o.beforeParams=!0,o.lastTokenWasBuiltin=!1,"keyword"):o.inString?(o.lastTokenWasBuiltin=!1,"string"):e.pos>k.length&&"."==e.string.charAt(e.pos-k.length-1)&&o.lastTokenWasBuiltin?"builtin":(o.lastTokenWasBuiltin=!1,null)}return o.lastTokenWasBuiltin=!1,o.inString?(o.inString=!1,"string"):o.inParams?i(e,o,s(c)):void 0}function s(e){return function(t,n){for(var r,a=!1,i=!1;null!=(r=t.next());){if(r==e&&!a){i=!0;break}if('"'==e&&"$"==t.peek()&&!a){n.inString=!0,i=!0;break}a=!a&&"\\"==r}return i&&(n.tokenize=o),"string"}}function l(e,t){for(var n,r=!1;n=e.next();){if("#"==n&&r){t.tokenize=o;break}r="*"==n}return"comment"}function u(e,t){for(var n,r=0;n=e.next();){if("#"==n&&2==r){t.tokenize=o;break}"]"==n?r++:" "!=n&&(r=0)}return"meta"}const f={name:"velocity",startState:function(){return{tokenize:o,beforeParams:!1,inParams:!1,inString:!1,lastTokenWasBuiltin:!1}},token:function(e,t){return e.eatSpace()?null:t.tokenize(e,t)},languageData:{commentTokens:{line:"##",block:{open:"#*",close:"*#"}}}};export{f as velocity};
|
package/dist/verilog-s8oM517K.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){var t=e.statementIndentUnit,n=e.dontAlignCalls,i=e.noIndentKeywords||[],r=e.multiLineStrings,a=e.hooks||{};function o(e){for(var t={},n=e.split(" "),i=0;i<n.length;++i)t[n[i]]=!0;return t}var l,s,c=o("accept_on alias always always_comb always_ff always_latch and assert assign assume automatic before begin bind bins binsof bit break buf bufif0 bufif1 byte case casex casez cell chandle checker class clocking cmos config const constraint context continue cover covergroup coverpoint cross deassign default defparam design disable dist do edge else end endcase endchecker endclass endclocking endconfig endfunction endgenerate endgroup endinterface endmodule endpackage endprimitive endprogram endproperty endspecify endsequence endtable endtask enum event eventually expect export extends extern final first_match for force foreach forever fork forkjoin function generate genvar global highz0 highz1 if iff ifnone ignore_bins illegal_bins implements implies import incdir include initial inout input inside instance int integer interconnect interface intersect join join_any join_none large let liblist library local localparam logic longint macromodule matches medium modport module nand negedge nettype new nexttime nmos nor noshowcancelled not notif0 notif1 null or output package packed parameter pmos posedge primitive priority program property protected pull0 pull1 pulldown pullup pulsestyle_ondetect pulsestyle_onevent pure rand randc randcase randsequence rcmos real realtime ref reg reject_on release repeat restrict return rnmos rpmos rtran rtranif0 rtranif1 s_always s_eventually s_nexttime s_until s_until_with scalared sequence shortint shortreal showcancelled signed small soft solve specify specparam static string strong strong0 strong1 struct super supply0 supply1 sync_accept_on sync_reject_on table tagged task this throughout time timeprecision timeunit tran tranif0 tranif1 tri tri0 tri1 triand trior trireg type typedef union unique unique0 unsigned until until_with untyped use uwire var vectored virtual void wait wait_order wand weak weak0 weak1 while wildcard wire with within wor xnor xor"),d=/[\+\-\*\/!~&|^%=?:]/,u=/[\[\]{}()]/,f=/\d[0-9_]*/,m=/\d*\s*'s?d\s*\d[0-9_]*/i,p=/\d*\s*'s?b\s*[xz01][xz01_]*/i,v=/\d*\s*'s?o\s*[xz0-7][xz0-7_]*/i,g=/\d*\s*'s?h\s*[0-9a-fxz?][0-9a-fxz?_]*/i,h=/(\d[\d_]*(\.\d[\d_]*)?E-?[\d_]+)|(\d[\d_]*\.\d[\d_]*)/i,k=/^((\w+)|[)}\]])/,y=/[)}\]]/,w=o("case checker class clocking config function generate interface module package primitive program property specify sequence table task"),b={};for(var _ in w)b[_]="end"+_;for(var x in b.begin="end",b.casex="endcase",b.casez="endcase",b.do="while",b.fork="join;join_any;join_none",b.covergroup="endgroup",i){_=i[x];b[_]&&(b[_]=void 0)}var z=o("always always_comb always_ff always_latch assert assign assume else export for foreach forever if import initial repeat while");function I(e,t){var n,i,o=e.peek();if(a[o]&&0!=(n=a[o](e,t)))return n;if(a.tokenBase&&0!=(n=a.tokenBase(e,t)))return n;if(/[,;:\.]/.test(o))return l=e.next(),null;if(u.test(o))return l=e.next(),"bracket";if("`"==o)return e.next(),e.eatWhile(/[\w\$_]/)?"def":null;if("$"==o)return e.next(),e.eatWhile(/[\w\$_]/)?"meta":null;if("#"==o)return e.next(),e.eatWhile(/[\d_.]/),"def";if('"'==o)return e.next(),t.tokenize=(i=o,function(e,t){for(var n,a=!1,o=!1;null!=(n=e.next());){if(n==i&&!a){o=!0;break}a=!a&&"\\"==n}return(o||!a&&!r)&&(t.tokenize=I),"string"}),t.tokenize(e,t);if("/"==o){if(e.next(),e.eat("*"))return t.tokenize=C,C(e,t);if(e.eat("/"))return e.skipToEnd(),"comment";e.backUp(1)}if(e.match(h)||e.match(m)||e.match(p)||e.match(v)||e.match(g)||e.match(f)||e.match(h))return"number";if(e.eatWhile(d))return"meta";if(e.eatWhile(/[\w\$_]/)){var k=e.current();return c[k]?(b[k]&&(l="newblock"),z[k]&&(l="newstatement"),s=k,"keyword"):"variable"}return e.next(),null}function C(e,t){for(var n,i=!1;n=e.next();){if("/"==n&&i){t.tokenize=I;break}i="*"==n}return"comment"}function S(e,t,n,i,r){this.indented=e,this.column=t,this.type=n,this.align=i,this.prev=r}function j(e,t,n){var i=new S(e.indented,t,n,null,e.context);return e.context=i}function N(e){var t=e.context.type;return")"!=t&&"]"!=t&&"}"!=t||(e.indented=e.context.indented),e.context=e.context.prev}function $(e,t){if(e==t)return!0;var n=t.split(";");for(var i in n)if(e==n[i])return!0;return!1}return{name:"verilog",startState:function(e){var t={tokenize:null,context:new S(-e,0,"top",!1),indented:0,startOfLine:!0};return a.startState&&a.startState(t),t},token:function(e,t){var n,i=t.context;if((e.sol()&&(null==i.align&&(i.align=!1),t.indented=e.indentation(),t.startOfLine=!0),a.token)&&void 0!==(n=a.token(e,t)))return n;if(e.eatSpace())return null;if(l=null,s=null,"comment"==(n=(t.tokenize||I)(e,t))||"meta"==n||"variable"==n)return n;if(null==i.align&&(i.align=!0),l==i.type)N(t);else if(";"==l&&"statement"==i.type||i.type&&$(s,i.type))for(i=N(t);i&&"statement"==i.type;)i=N(t);else if("{"==l)j(t,e.column(),"}");else if("["==l)j(t,e.column(),"]");else if("("==l)j(t,e.column(),")");else if(i&&"endcase"==i.type&&":"==l)j(t,e.column(),"statement");else if("newstatement"==l)j(t,e.column(),"statement");else if("newblock"==l)if("function"!=s||!i||"statement"!=i.type&&"endgroup"!=i.type)if("task"==s&&i&&"statement"==i.type);else{var r=b[s];j(t,e.column(),r)}else;return t.startOfLine=!1,n},indent:function(e,i,r){if(e.tokenize!=I&&null!=e.tokenize)return null;if(a.indent){var o=a.indent(e);if(o>=0)return o}var l=e.context,s=i&&i.charAt(0);"statement"==l.type&&"}"==s&&(l=l.prev);var c=!1,d=i.match(k);return d&&(c=$(d[0],l.type)),"statement"==l.type?l.indented+("{"==s?0:t||r.unit):y.test(l.type)&&l.align&&!n?l.column+(c?0:1):")"!=l.type||c?l.indented+(c?0:r.unit):l.indented+(t||r.unit)},languageData:{indentOnInput:function(){var e=[];for(var t in b)if(b[t]){var n=b[t].split(";");for(var i in n)e.push(n[i])}return new RegExp("[{}()\\[\\]]|("+e.join("|")+")$")}(),commentTokens:{line:"//",block:{open:"/*",close:"*/"}}}}}const t=e({});var n={"|":"link",">":"property",$:"variable",$$:"variable","?$":"qualifier","?*":"qualifier","-":"contentSeparator","/":"property","/-":"property","@":"variableName.special","@-":"variableName.special","@++":"variableName.special","@+=":"variableName.special","@+=-":"variableName.special","@--":"variableName.special","@-=":"variableName.special","%+":"tag","%-":"tag","%":"tag",">>":"tag","<<":"tag","<>":"tag","#":"tag","^":"attribute","^^":"attribute","^!":"attribute","*":"variable","**":"variable","\\":"keyword",'"':"comment"},i={"/":"beh-hier",">":"beh-hier","-":"phys-hier","|":"pipe","?":"when","@":"stage","\\":"keyword"},r=/^([~!@#\$%\^&\*-\+=\?\/\\\|'"<>]+)([\d\w_]*)/,a=/^[! ] */,o=/^\/[\/\*]/;e({hooks:{electricInput:!1,token:function(e,t){var l,s=void 0;if(e.sol()&&!t.tlvInBlockComment){"\\"==e.peek()&&(s="def",e.skipToEnd(),e.string.match(/\\SV/)?t.tlvCodeActive=!1:e.string.match(/\\TLV/)&&(t.tlvCodeActive=!0)),t.tlvCodeActive&&0==e.pos&&0==t.indented&&(l=e.match(a,!1))&&(t.indented=l[0].length);var c=t.indented,d=c/3;if(d<=t.tlvIndentationStyle.length){var u=e.string.length==c,f=3*d;if(f<e.string.length){var m=e.string.slice(f),p=m[0];i[p]&&(l=m.match(r))&&n[l[1]]&&(c+=3,"\\"==p&&f>0||(t.tlvIndentationStyle[d]=i[p],d++))}if(!u)for(;t.tlvIndentationStyle.length>d;)t.tlvIndentationStyle.pop()}t.tlvNextIndent=c}if(t.tlvCodeActive)if(void 0!==s);else if(t.tlvInBlockComment)e.match(/^.*?\*\//)?t.tlvInBlockComment=!1:e.skipToEnd(),s="comment";else if((l=e.match(o))&&!t.tlvInBlockComment)"//"==l[0]?e.skipToEnd():t.tlvInBlockComment=!0,s="comment";else if(l=e.match(r)){var v=l[1],g=l[2];n.hasOwnProperty(v)&&(g.length>0||e.eol())?s=n[v]:e.backUp(e.current().length-1)}else e.match(/^\t+/)?s="invalid":e.match(/^[\[\]{}\(\);\:]+/)?s="meta":(l=e.match(/^[mM]4([\+_])?[\w\d_]*/))?s="+"==l[1]?"keyword.special":"keyword":e.match(/^ +/)?e.eol()&&(s="error"):e.match(/^[\w\d_]+/)?s="number":e.next();else e.match(/^[mM]4([\w\d_]*)/)&&(s="keyword");return s},indent:function(e){return 1==e.tlvCodeActive?e.tlvNextIndent:-1},startState:function(e){e.tlvIndentationStyle=[],e.tlvCodeActive=!0,e.tlvNextIndent=-1,e.tlvInBlockComment=!1}}});export{t as verilog};
|