@loopstack/loopstack-studio 0.20.2 → 0.21.0-rc.0
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/dist/_virtual/rolldown_runtime.js +20 -0
- package/dist/components/data-table/ConfirmDialog.js +30 -0
- package/dist/components/data-table/DataList.js +216 -0
- package/dist/components/data-table/DataTable.js +264 -0
- package/dist/components/data-table/DataTableBatchAction.js +32 -0
- package/dist/components/data-table/DataTableFilters.js +83 -0
- package/dist/components/data-table/DataTablePagination.js +108 -0
- package/dist/components/data-table/DataTableToolbar.js +70 -0
- package/dist/components/dynamic-form/ArrayController.js +100 -0
- package/dist/components/dynamic-form/CodeContent.js +174 -0
- package/dist/components/dynamic-form/Form.js +35 -0
- package/dist/components/dynamic-form/FormBody.js +26 -0
- package/dist/components/dynamic-form/FormElement.js +42 -0
- package/dist/components/dynamic-form/FormElementHeader.js +20 -0
- package/dist/components/dynamic-form/InputController.js +38 -0
- package/dist/components/dynamic-form/MarkdownContent.js +76 -0
- package/dist/components/dynamic-form/MermaidDiagram.js +41 -0
- package/dist/components/dynamic-form/ObjectController.js +32 -0
- package/dist/components/dynamic-form/fields/BaseFieldWrapper.js +47 -0
- package/dist/components/dynamic-form/fields/CheckboxField.js +53 -0
- package/dist/components/dynamic-form/fields/CodeViewField.js +63 -0
- package/dist/components/dynamic-form/fields/InputField.js +105 -0
- package/dist/components/dynamic-form/fields/RadioField.js +67 -0
- package/dist/components/dynamic-form/fields/SelectField.js +60 -0
- package/dist/components/dynamic-form/fields/SliderField.js +112 -0
- package/dist/components/dynamic-form/fields/SwitchField.js +66 -0
- package/dist/components/dynamic-form/fields/TextareaField.js +77 -0
- package/dist/components/dynamic-form/fields/utils/text-validation-utils.js +33 -0
- package/dist/components/dynamic-form/hooks/useArrayDefaultValue.js +42 -0
- package/dist/components/dynamic-form/hooks/useFieldConfig.js +21 -0
- package/dist/components/dynamic-form/hooks/useMergeParentKey.js +5 -0
- package/dist/components/dynamic-form/hooks/useSortPropertyNames.js +5 -0
- package/dist/components/layout/MainLayout.js +24 -0
- package/dist/components/lists/CustomListView.js +87 -0
- package/dist/components/lists/ListView.js +118 -0
- package/dist/components/page/PageBreadcrumbs.js +41 -0
- package/dist/components/snackbars/ErrorSnackbar.js +30 -0
- package/dist/components/snackbars/Snackbar.js +44 -0
- package/dist/components/ui/alert-dialog.js +121 -0
- package/dist/components/ui/badge.js +28 -0
- package/dist/components/ui/breadcrumb.js +85 -0
- package/dist/components/ui/button.js +47 -0
- package/dist/components/ui/card.js +29 -0
- package/dist/components/ui/checkbox.js +26 -0
- package/dist/components/ui/collapsible.js +32 -0
- package/dist/components/ui/dialog.js +88 -0
- package/dist/components/ui/input.js +18 -0
- package/dist/components/ui/label.js +19 -0
- package/dist/components/ui/radio-group.js +38 -0
- package/dist/components/ui/select.js +125 -0
- package/dist/components/ui/sheet.js +97 -0
- package/dist/components/ui/slider.js +35 -0
- package/dist/components/ui/switch.js +24 -0
- package/dist/components/ui/table.js +81 -0
- package/dist/components/ui/textarea.js +17 -0
- package/dist/components/ui/tooltip.js +50 -0
- package/dist/features/health/LocalHealthCheck.js +95 -0
- package/dist/features/workspaces/Workspaces.js +162 -0
- package/dist/features/workspaces/components/CreateWorkspace.js +128 -0
- package/dist/features/workspaces/components/ExecutionTimeline.js +204 -0
- package/dist/features/workspaces/components/NewPipelineRunDialog.js +31 -0
- package/dist/features/workspaces/components/PipelineForm.js +152 -0
- package/dist/features/workspaces/components/pipeline-form/ArgumentsView.js +75 -0
- package/dist/features/workspaces/components/pipeline-form/HeaderSection.js +43 -0
- package/dist/features/workspaces/components/pipeline-form/SelectionView.js +105 -0
- package/dist/hooks/use-mobile.js +3 -3
- package/dist/hooks/useAuth.js +56 -0
- package/dist/hooks/useConfig.js +46 -0
- package/dist/hooks/useDebounce.js +27 -0
- package/dist/hooks/usePipelines.js +117 -0
- package/dist/hooks/useProcessor.js +24 -0
- package/dist/hooks/useWorkspaces.js +142 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +4 -1
- package/dist/lib/utils.js +6 -0
- package/dist/loopstack-studio.css +2 -0
- package/dist/node_modules/@braintree/sanitize-url/dist/constants.js +6 -0
- package/dist/node_modules/@braintree/sanitize-url/dist/index.js +48 -0
- package/dist/node_modules/@chevrotain/gast/lib/src/helpers.js +26 -0
- package/dist/node_modules/@chevrotain/gast/lib/src/model.js +154 -0
- package/dist/node_modules/@chevrotain/gast/lib/src/visitor.js +40 -0
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/api.js +2 -0
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/base-regexp-visitor.js +85 -0
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/character-classes.js +35 -0
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/regexp-parser.js +570 -0
- package/dist/node_modules/@chevrotain/regexp-to-ast/lib/src/utils.js +25 -0
- package/dist/node_modules/@chevrotain/utils/lib/src/print.js +9 -0
- package/dist/node_modules/@chevrotain/utils/lib/src/timer.js +8 -0
- package/dist/node_modules/@chevrotain/utils/lib/src/to-fast-properties.js +10 -0
- package/dist/node_modules/@iconify/utils/lib/customisations/defaults.js +9 -0
- package/dist/node_modules/@iconify/utils/lib/icon/defaults.js +18 -0
- package/dist/node_modules/@iconify/utils/lib/icon/merge.js +8 -0
- package/dist/node_modules/@iconify/utils/lib/icon/name.js +35 -0
- package/dist/node_modules/@iconify/utils/lib/icon/transformations.js +7 -0
- package/dist/node_modules/@iconify/utils/lib/icon-set/get-icon.js +15 -0
- package/dist/node_modules/@iconify/utils/lib/icon-set/tree.js +14 -0
- package/dist/node_modules/@iconify/utils/lib/svg/build.js +54 -0
- package/dist/node_modules/@iconify/utils/lib/svg/defs.js +22 -0
- package/dist/node_modules/@iconify/utils/lib/svg/html.js +6 -0
- package/dist/node_modules/@iconify/utils/lib/svg/id.js +17 -0
- package/dist/node_modules/@iconify/utils/lib/svg/size.js +18 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/architecture-7HQA4BMR.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-4F5CHEZ2.js +23 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-B2363JML.js +60 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-FRFDVMJY.js +23 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-PL6DKKU2.js +28 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-SJTYNZTY.js +23 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TCCFYFTB.js +787 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-TQ3KTPDO.js +23 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/chunk-UMXZTB3W.js +30 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/gitGraph-G5XIXVHT.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/info-VBDWY6EO.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/packet-DYOGHKS2.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/pie-VRWISCQL.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/radar-ZZBFDIW7.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/chunks/mermaid-parser.core/treemap-GDKQZRPO.js +3 -0
- package/dist/node_modules/@mermaid-js/parser/dist/mermaid-parser.core.js +55 -0
- package/dist/node_modules/ccount/index.js +8 -0
- package/dist/node_modules/chevrotain/lib/src/api.js +10 -0
- package/dist/node_modules/chevrotain/lib/src/lang/lang_extensions.js +10 -0
- package/dist/node_modules/chevrotain/lib/src/parse/constants.js +2 -0
- package/dist/node_modules/chevrotain/lib/src/parse/cst/cst.js +13 -0
- package/dist/node_modules/chevrotain/lib/src/parse/cst/cst_visitor.js +58 -0
- package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +75 -0
- package/dist/node_modules/chevrotain/lib/src/parse/exceptions_public.js +34 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/checks.js +299 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/first.js +25 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/follow.js +29 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/gast/gast_resolver_public.js +15 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/interpreter.js +269 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/keys.js +5 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/llk_lookahead.js +43 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/lookahead.js +248 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/resolver.js +32 -0
- package/dist/node_modules/chevrotain/lib/src/parse/grammar/rest.js +58 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/parser.js +122 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/context_assist.js +16 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/error_handler.js +48 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/gast_recorder.js +172 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/lexer_adapter.js +39 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/looksahead.js +109 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/perf_tracer.js +22 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_api.js +313 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recognizer_engine.js +275 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/recoverable.js +144 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/traits/tree_builder.js +102 -0
- package/dist/node_modules/chevrotain/lib/src/parse/parser/utils/apply_mixins.js +11 -0
- package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +465 -0
- package/dist/node_modules/chevrotain/lib/src/scan/lexer_errors_public.js +9 -0
- package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +275 -0
- package/dist/node_modules/chevrotain/lib/src/scan/reg_exp.js +152 -0
- package/dist/node_modules/chevrotain/lib/src/scan/reg_exp_parser.js +15 -0
- package/dist/node_modules/chevrotain/lib/src/scan/tokens.js +75 -0
- package/dist/node_modules/chevrotain/lib/src/scan/tokens_public.js +42 -0
- package/dist/node_modules/chevrotain-allstar/lib/all-star-lookahead.js +346 -0
- package/dist/node_modules/chevrotain-allstar/lib/atn.js +194 -0
- package/dist/node_modules/chevrotain-allstar/lib/dfa.js +32 -0
- package/dist/node_modules/chevrotain-allstar/lib/index.js +1 -0
- package/dist/node_modules/comma-separated-tokens/index.js +10 -0
- package/dist/node_modules/cose-base/cose-base.js +469 -0
- package/dist/node_modules/cytoscape/dist/cytoscape.esm.js +18100 -0
- package/dist/node_modules/cytoscape-cose-bilkent/cytoscape-cose-bilkent.js +172 -0
- package/dist/node_modules/cytoscape-fcose/cytoscape-fcose.js +604 -0
- package/dist/node_modules/cytoscape-fcose/node_modules/cose-base/cose-base.js +1142 -0
- package/dist/node_modules/cytoscape-fcose/node_modules/layout-base/layout-base.js +1635 -0
- package/dist/node_modules/d3/src/index.js +93 -0
- package/dist/node_modules/d3-array/src/ascending.js +4 -0
- package/dist/node_modules/d3-array/src/bisect.js +8 -0
- package/dist/node_modules/d3-array/src/bisector.js +39 -0
- package/dist/node_modules/d3-array/src/descending.js +4 -0
- package/dist/node_modules/d3-array/src/max.js +10 -0
- package/dist/node_modules/d3-array/src/min.js +10 -0
- package/dist/node_modules/d3-array/src/number.js +4 -0
- package/dist/node_modules/d3-array/src/range.js +6 -0
- package/dist/node_modules/d3-array/src/ticks.js +30 -0
- package/dist/node_modules/d3-axis/src/axis.js +61 -0
- package/dist/node_modules/d3-axis/src/identity.js +4 -0
- package/dist/node_modules/d3-brush/src/brush.js +15 -0
- package/dist/node_modules/d3-brush/src/index.js +1 -0
- package/dist/node_modules/d3-color/src/color.js +287 -0
- package/dist/node_modules/d3-color/src/define.js +9 -0
- package/dist/node_modules/d3-color/src/lab.js +70 -0
- package/dist/node_modules/d3-color/src/math.js +2 -0
- package/dist/node_modules/d3-dispatch/src/dispatch.js +64 -0
- package/dist/node_modules/d3-ease/src/cubic.js +4 -0
- package/dist/node_modules/d3-format/src/defaultLocale.js +11 -0
- package/dist/node_modules/d3-format/src/exponent.js +5 -0
- package/dist/node_modules/d3-format/src/formatDecimal.js +9 -0
- package/dist/node_modules/d3-format/src/formatGroup.js +7 -0
- package/dist/node_modules/d3-format/src/formatNumerals.js +8 -0
- package/dist/node_modules/d3-format/src/formatPrefixAuto.js +9 -0
- package/dist/node_modules/d3-format/src/formatRounded.js +8 -0
- package/dist/node_modules/d3-format/src/formatSpecifier.js +25 -0
- package/dist/node_modules/d3-format/src/formatTrim.js +16 -0
- package/dist/node_modules/d3-format/src/formatTypes.js +19 -0
- package/dist/node_modules/d3-format/src/identity.js +4 -0
- package/dist/node_modules/d3-format/src/locale.js +82 -0
- package/dist/node_modules/d3-format/src/precisionFixed.js +5 -0
- package/dist/node_modules/d3-format/src/precisionPrefix.js +5 -0
- package/dist/node_modules/d3-format/src/precisionRound.js +5 -0
- package/dist/node_modules/d3-hierarchy/src/accessors.js +5 -0
- package/dist/node_modules/d3-hierarchy/src/constant.js +9 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/ancestors.js +5 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/count.js +10 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/descendants.js +4 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/each.js +6 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/eachAfter.js +6 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/eachBefore.js +5 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/find.js +5 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/index.js +57 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/iterator.js +7 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/leaves.js +7 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/links.js +10 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/path.js +12 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/sort.js +6 -0
- package/dist/node_modules/d3-hierarchy/src/hierarchy/sum.js +7 -0
- package/dist/node_modules/d3-hierarchy/src/treemap/dice.js +4 -0
- package/dist/node_modules/d3-hierarchy/src/treemap/index.js +36 -0
- package/dist/node_modules/d3-hierarchy/src/treemap/round.js +4 -0
- package/dist/node_modules/d3-hierarchy/src/treemap/slice.js +4 -0
- package/dist/node_modules/d3-hierarchy/src/treemap/squarify.js +33 -0
- package/dist/node_modules/d3-interpolate/src/array.js +11 -0
- package/dist/node_modules/d3-interpolate/src/basis.js +12 -0
- package/dist/node_modules/d3-interpolate/src/basisClosed.js +9 -0
- package/dist/node_modules/d3-interpolate/src/color.js +25 -0
- package/dist/node_modules/d3-interpolate/src/constant.js +2 -0
- package/dist/node_modules/d3-interpolate/src/date.js +7 -0
- package/dist/node_modules/d3-interpolate/src/hcl.js +12 -0
- package/dist/node_modules/d3-interpolate/src/number.js +6 -0
- package/dist/node_modules/d3-interpolate/src/numberArray.js +12 -0
- package/dist/node_modules/d3-interpolate/src/object.js +10 -0
- package/dist/node_modules/d3-interpolate/src/rgb.js +15 -0
- package/dist/node_modules/d3-interpolate/src/round.js +6 -0
- package/dist/node_modules/d3-interpolate/src/string.js +24 -0
- package/dist/node_modules/d3-interpolate/src/transform/decompose.js +20 -0
- package/dist/node_modules/d3-interpolate/src/transform/index.js +52 -0
- package/dist/node_modules/d3-interpolate/src/transform/parse.js +10 -0
- package/dist/node_modules/d3-interpolate/src/value.js +14 -0
- package/dist/node_modules/d3-path/src/path.js +61 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-array/src/max.js +10 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-array/src/min.js +10 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-array/src/sum.js +10 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-path/src/path.js +50 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/array.js +2 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/constant.js +6 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/link/index.js +35 -0
- package/dist/node_modules/d3-sankey/node_modules/d3-shape/src/point.js +7 -0
- package/dist/node_modules/d3-sankey/src/align.js +17 -0
- package/dist/node_modules/d3-sankey/src/constant.js +6 -0
- package/dist/node_modules/d3-sankey/src/sankey.js +224 -0
- package/dist/node_modules/d3-sankey/src/sankeyLinkHorizontal.js +11 -0
- package/dist/node_modules/d3-scale/src/band.js +39 -0
- package/dist/node_modules/d3-scale/src/constant.js +6 -0
- package/dist/node_modules/d3-scale/src/continuous.js +69 -0
- package/dist/node_modules/d3-scale/src/init.js +13 -0
- package/dist/node_modules/d3-scale/src/linear.js +32 -0
- package/dist/node_modules/d3-scale/src/nice.js +6 -0
- package/dist/node_modules/d3-scale/src/number.js +4 -0
- package/dist/node_modules/d3-scale/src/ordinal.js +27 -0
- package/dist/node_modules/d3-scale/src/tickFormat.js +27 -0
- package/dist/node_modules/d3-scale/src/time.js +43 -0
- package/dist/node_modules/d3-scale-chromatic/src/categorical/Tableau10.js +3 -0
- package/dist/node_modules/d3-scale-chromatic/src/colors.js +5 -0
- package/dist/node_modules/d3-selection/src/array.js +4 -0
- package/dist/node_modules/d3-selection/src/constant.js +6 -0
- package/dist/node_modules/d3-selection/src/creator.js +18 -0
- package/dist/node_modules/d3-selection/src/matcher.js +11 -0
- package/dist/node_modules/d3-selection/src/namespace.js +9 -0
- package/dist/node_modules/d3-selection/src/namespaces.js +8 -0
- package/dist/node_modules/d3-selection/src/select.js +5 -0
- package/dist/node_modules/d3-selection/src/selection/append.js +8 -0
- package/dist/node_modules/d3-selection/src/selection/attr.js +42 -0
- package/dist/node_modules/d3-selection/src/selection/call.js +5 -0
- package/dist/node_modules/d3-selection/src/selection/classed.js +51 -0
- package/dist/node_modules/d3-selection/src/selection/clone.js +12 -0
- package/dist/node_modules/d3-selection/src/selection/data.js +34 -0
- package/dist/node_modules/d3-selection/src/selection/datum.js +4 -0
- package/dist/node_modules/d3-selection/src/selection/dispatch.js +19 -0
- package/dist/node_modules/d3-selection/src/selection/each.js +5 -0
- package/dist/node_modules/d3-selection/src/selection/empty.js +4 -0
- package/dist/node_modules/d3-selection/src/selection/enter.js +24 -0
- package/dist/node_modules/d3-selection/src/selection/exit.js +6 -0
- package/dist/node_modules/d3-selection/src/selection/filter.js +8 -0
- package/dist/node_modules/d3-selection/src/selection/html.js +17 -0
- package/dist/node_modules/d3-selection/src/selection/index.js +84 -0
- package/dist/node_modules/d3-selection/src/selection/insert.js +12 -0
- package/dist/node_modules/d3-selection/src/selection/iterator.js +4 -0
- package/dist/node_modules/d3-selection/src/selection/join.js +5 -0
- package/dist/node_modules/d3-selection/src/selection/lower.js +7 -0
- package/dist/node_modules/d3-selection/src/selection/merge.js +7 -0
- package/dist/node_modules/d3-selection/src/selection/node.js +8 -0
- package/dist/node_modules/d3-selection/src/selection/nodes.js +4 -0
- package/dist/node_modules/d3-selection/src/selection/on.js +54 -0
- package/dist/node_modules/d3-selection/src/selection/order.js +5 -0
- package/dist/node_modules/d3-selection/src/selection/property.js +20 -0
- package/dist/node_modules/d3-selection/src/selection/raise.js +7 -0
- package/dist/node_modules/d3-selection/src/selection/remove.js +8 -0
- package/dist/node_modules/d3-selection/src/selection/select.js +8 -0
- package/dist/node_modules/d3-selection/src/selection/selectAll.js +14 -0
- package/dist/node_modules/d3-selection/src/selection/selectChild.js +14 -0
- package/dist/node_modules/d3-selection/src/selection/selectChildren.js +14 -0
- package/dist/node_modules/d3-selection/src/selection/size.js +6 -0
- package/dist/node_modules/d3-selection/src/selection/sort.js +16 -0
- package/dist/node_modules/d3-selection/src/selection/sparse.js +4 -0
- package/dist/node_modules/d3-selection/src/selection/style.js +24 -0
- package/dist/node_modules/d3-selection/src/selection/text.js +17 -0
- package/dist/node_modules/d3-selection/src/selector.js +7 -0
- package/dist/node_modules/d3-selection/src/selectorAll.js +9 -0
- package/dist/node_modules/d3-selection/src/window.js +4 -0
- package/dist/node_modules/d3-shape/src/arc.js +79 -0
- package/dist/node_modules/d3-shape/src/array.js +5 -0
- package/dist/node_modules/d3-shape/src/constant.js +6 -0
- package/dist/node_modules/d3-shape/src/curve/basis.js +45 -0
- package/dist/node_modules/d3-shape/src/curve/basisClosed.js +46 -0
- package/dist/node_modules/d3-shape/src/curve/basisOpen.js +42 -0
- package/dist/node_modules/d3-shape/src/curve/bump.js +36 -0
- package/dist/node_modules/d3-shape/src/curve/bundle.js +26 -0
- package/dist/node_modules/d3-shape/src/curve/cardinal.js +52 -0
- package/dist/node_modules/d3-shape/src/curve/cardinalClosed.js +51 -0
- package/dist/node_modules/d3-shape/src/curve/cardinalOpen.js +45 -0
- package/dist/node_modules/d3-shape/src/curve/catmullRom.js +67 -0
- package/dist/node_modules/d3-shape/src/curve/catmullRomClosed.js +56 -0
- package/dist/node_modules/d3-shape/src/curve/catmullRomOpen.js +50 -0
- package/dist/node_modules/d3-shape/src/curve/linear.js +32 -0
- package/dist/node_modules/d3-shape/src/curve/linearClosed.js +21 -0
- package/dist/node_modules/d3-shape/src/curve/monotone.js +90 -0
- package/dist/node_modules/d3-shape/src/curve/natural.js +35 -0
- package/dist/node_modules/d3-shape/src/curve/step.js +43 -0
- package/dist/node_modules/d3-shape/src/descending.js +4 -0
- package/dist/node_modules/d3-shape/src/identity.js +4 -0
- package/dist/node_modules/d3-shape/src/line.js +26 -0
- package/dist/node_modules/d3-shape/src/math.js +8 -0
- package/dist/node_modules/d3-shape/src/noop.js +2 -0
- package/dist/node_modules/d3-shape/src/path.js +15 -0
- package/dist/node_modules/d3-shape/src/pie.js +39 -0
- package/dist/node_modules/d3-shape/src/point.js +7 -0
- package/dist/node_modules/d3-time/src/day.js +17 -0
- package/dist/node_modules/d3-time/src/duration.js +2 -0
- package/dist/node_modules/d3-time/src/hour.js +15 -0
- package/dist/node_modules/d3-time/src/interval.js +24 -0
- package/dist/node_modules/d3-time/src/millisecond.js +10 -0
- package/dist/node_modules/d3-time/src/minute.js +15 -0
- package/dist/node_modules/d3-time/src/month.js +14 -0
- package/dist/node_modules/d3-time/src/second.js +9 -0
- package/dist/node_modules/d3-time/src/ticks.js +121 -0
- package/dist/node_modules/d3-time/src/week.js +21 -0
- package/dist/node_modules/d3-time/src/year.js +22 -0
- package/dist/node_modules/d3-time-format/src/defaultLocale.js +58 -0
- package/dist/node_modules/d3-time-format/src/locale.js +486 -0
- package/dist/node_modules/d3-timer/src/timeout.js +8 -0
- package/dist/node_modules/d3-timer/src/timer.js +51 -0
- package/dist/node_modules/d3-transition/src/index.js +3 -0
- package/dist/node_modules/d3-transition/src/interrupt.js +15 -0
- package/dist/node_modules/d3-transition/src/selection/index.js +4 -0
- package/dist/node_modules/d3-transition/src/selection/interrupt.js +7 -0
- package/dist/node_modules/d3-transition/src/selection/transition.js +21 -0
- package/dist/node_modules/d3-transition/src/transition/attr.js +47 -0
- package/dist/node_modules/d3-transition/src/transition/attrTween.js +36 -0
- package/dist/node_modules/d3-transition/src/transition/delay.js +16 -0
- package/dist/node_modules/d3-transition/src/transition/duration.js +16 -0
- package/dist/node_modules/d3-transition/src/transition/ease.js +12 -0
- package/dist/node_modules/d3-transition/src/transition/easeVarying.js +13 -0
- package/dist/node_modules/d3-transition/src/transition/end.js +14 -0
- package/dist/node_modules/d3-transition/src/transition/filter.js +8 -0
- package/dist/node_modules/d3-transition/src/transition/index.js +65 -0
- package/dist/node_modules/d3-transition/src/transition/interpolate.js +9 -0
- package/dist/node_modules/d3-transition/src/transition/merge.js +8 -0
- package/dist/node_modules/d3-transition/src/transition/on.js +19 -0
- package/dist/node_modules/d3-transition/src/transition/remove.js +11 -0
- package/dist/node_modules/d3-transition/src/transition/schedule.js +67 -0
- package/dist/node_modules/d3-transition/src/transition/select.js +10 -0
- package/dist/node_modules/d3-transition/src/transition/selectAll.js +13 -0
- package/dist/node_modules/d3-transition/src/transition/selection.js +6 -0
- package/dist/node_modules/d3-transition/src/transition/style.js +43 -0
- package/dist/node_modules/d3-transition/src/transition/styleTween.js +21 -0
- package/dist/node_modules/d3-transition/src/transition/text.js +15 -0
- package/dist/node_modules/d3-transition/src/transition/textTween.js +21 -0
- package/dist/node_modules/d3-transition/src/transition/transition.js +15 -0
- package/dist/node_modules/d3-transition/src/transition/tween.js +52 -0
- package/dist/node_modules/d3-zoom/src/index.js +2 -0
- package/dist/node_modules/d3-zoom/src/transform.js +46 -0
- package/dist/node_modules/d3-zoom/src/zoom.js +2 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/acyclic.js +34 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/add-border-segments.js +22 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/coordinate-system.js +44 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/data/list.js +25 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/greedy-fas.js +69 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/index.js +4 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/layout.js +241 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/nesting-graph.js +66 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/normalize.js +32 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/add-subgraph-constraints.js +14 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/barycenter.js +25 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/build-layer-graph.js +25 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/cross-count.js +33 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/index.js +44 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/init-order.js +23 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/resolve-conflicts.js +55 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/sort-subgraph.js +43 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/order/sort.js +27 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/parent-dummy-chains.js +40 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/position/bk.js +216 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/position/index.js +23 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/feasible-tree.js +31 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/index.js +25 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/network-simplex.js +84 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/rank/util.js +20 -0
- package/dist/node_modules/dagre-d3-es/src/dagre/util.js +117 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dfs.js +16 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dijkstra-all.js +1 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/dijkstra.js +2 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/floyd-warshall.js +2 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/index.js +8 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/is-acyclic.js +1 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/postorder.js +5 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/preorder.js +5 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/prim.js +1 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/alg/topsort.js +15 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/graph.js +228 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/index.js +1 -0
- package/dist/node_modules/dagre-d3-es/src/graphlib/json.js +32 -0
- package/dist/node_modules/dayjs/dayjs.min.js +298 -0
- package/dist/node_modules/dayjs/plugin/advancedFormat.js +37 -0
- package/dist/node_modules/dayjs/plugin/customParseFormat.js +160 -0
- package/dist/node_modules/dayjs/plugin/duration.js +164 -0
- package/dist/node_modules/dayjs/plugin/isoWeek.js +29 -0
- package/dist/node_modules/devlop/lib/default.js +2 -0
- package/dist/node_modules/dompurify/dist/purify.es.js +547 -0
- package/dist/node_modules/hast-util-from-dom/lib/index.js +58 -0
- package/dist/node_modules/hast-util-from-html-isomorphic/lib/browser.js +10 -0
- package/dist/node_modules/hast-util-is-element/lib/index.js +36 -0
- package/dist/node_modules/hast-util-parse-selector/lib/index.js +16 -0
- package/dist/node_modules/hast-util-to-text/lib/index.js +104 -0
- package/dist/node_modules/hastscript/lib/create-h.js +86 -0
- package/dist/node_modules/hastscript/lib/index.js +5 -0
- package/dist/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +2 -0
- package/dist/node_modules/internmap/src/index.js +36 -0
- package/dist/node_modules/katex/dist/katex.js +22103 -0
- package/dist/node_modules/khroma/dist/channels/index.js +68 -0
- package/dist/node_modules/khroma/dist/channels/reusable.js +8 -0
- package/dist/node_modules/khroma/dist/channels/type.js +20 -0
- package/dist/node_modules/khroma/dist/color/hex.js +22 -0
- package/dist/node_modules/khroma/dist/color/hsl.js +36 -0
- package/dist/node_modules/khroma/dist/color/index.js +23 -0
- package/dist/node_modules/khroma/dist/color/keyword.js +162 -0
- package/dist/node_modules/khroma/dist/color/rgb.js +23 -0
- package/dist/node_modules/khroma/dist/constants.js +9 -0
- package/dist/node_modules/khroma/dist/methods/adjust.js +8 -0
- package/dist/node_modules/khroma/dist/methods/adjust_channel.js +7 -0
- package/dist/node_modules/khroma/dist/methods/change.js +8 -0
- package/dist/node_modules/khroma/dist/methods/channel.js +4 -0
- package/dist/node_modules/khroma/dist/methods/darken.js +3 -0
- package/dist/node_modules/khroma/dist/methods/invert.js +7 -0
- package/dist/node_modules/khroma/dist/methods/is_dark.js +3 -0
- package/dist/node_modules/khroma/dist/methods/is_light.js +3 -0
- package/dist/node_modules/khroma/dist/methods/lighten.js +3 -0
- package/dist/node_modules/khroma/dist/methods/luminance.js +7 -0
- package/dist/node_modules/khroma/dist/methods/mix.js +7 -0
- package/dist/node_modules/khroma/dist/methods/rgba.js +15 -0
- package/dist/node_modules/khroma/dist/utils/channel.js +58 -0
- package/dist/node_modules/khroma/dist/utils/index.js +9 -0
- package/dist/node_modules/khroma/dist/utils/lang.js +5 -0
- package/dist/node_modules/khroma/dist/utils/unit.js +5 -0
- package/dist/node_modules/langium/lib/default-module.js +85 -0
- package/dist/node_modules/langium/lib/dependency-injection.js +62 -0
- package/dist/node_modules/langium/lib/documentation/comment-provider.js +11 -0
- package/dist/node_modules/langium/lib/documentation/documentation-provider.js +36 -0
- package/dist/node_modules/langium/lib/documentation/jsdoc.js +303 -0
- package/dist/node_modules/langium/lib/index.js +182 -0
- package/dist/node_modules/langium/lib/languages/generated/ast.js +1089 -0
- package/dist/node_modules/langium/lib/languages/grammar-config.js +13 -0
- package/dist/node_modules/langium/lib/parser/async-parser.js +83 -0
- package/dist/node_modules/langium/lib/parser/completion-parser-builder.js +7 -0
- package/dist/node_modules/langium/lib/parser/cst-node-builder.js +160 -0
- package/dist/node_modules/langium/lib/parser/indentation-aware.js +141 -0
- package/dist/node_modules/langium/lib/parser/langium-parser-builder.js +11 -0
- package/dist/node_modules/langium/lib/parser/langium-parser.js +388 -0
- package/dist/node_modules/langium/lib/parser/lexer.js +50 -0
- package/dist/node_modules/langium/lib/parser/parser-builder-base.js +275 -0
- package/dist/node_modules/langium/lib/parser/token-builder.js +61 -0
- package/dist/node_modules/langium/lib/parser/value-converter.js +78 -0
- package/dist/node_modules/langium/lib/references/linker.js +190 -0
- package/dist/node_modules/langium/lib/references/name-provider.js +13 -0
- package/dist/node_modules/langium/lib/references/references.js +76 -0
- package/dist/node_modules/langium/lib/references/scope-computation.js +35 -0
- package/dist/node_modules/langium/lib/references/scope-provider.js +34 -0
- package/dist/node_modules/langium/lib/references/scope.js +73 -0
- package/dist/node_modules/langium/lib/serializer/hydrator.js +125 -0
- package/dist/node_modules/langium/lib/serializer/json-serializer.js +145 -0
- package/dist/node_modules/langium/lib/service-registry.js +37 -0
- package/dist/node_modules/langium/lib/syntax-tree.js +70 -0
- package/dist/node_modules/langium/lib/utils/ast-utils.js +157 -0
- package/dist/node_modules/langium/lib/utils/caching.js +91 -0
- package/dist/node_modules/langium/lib/utils/cancellation.js +5 -0
- package/dist/node_modules/langium/lib/utils/collections.js +85 -0
- package/dist/node_modules/langium/lib/utils/cst-utils.js +190 -0
- package/dist/node_modules/langium/lib/utils/disposable.js +8 -0
- package/dist/node_modules/langium/lib/utils/errors.js +12 -0
- package/dist/node_modules/langium/lib/utils/event.js +5 -0
- package/dist/node_modules/langium/lib/utils/grammar-loader.js +22 -0
- package/dist/node_modules/langium/lib/utils/grammar-utils.js +296 -0
- package/dist/node_modules/langium/lib/utils/index.js +53 -0
- package/dist/node_modules/langium/lib/utils/promise-utils.js +30 -0
- package/dist/node_modules/langium/lib/utils/regexp-utils.js +167 -0
- package/dist/node_modules/langium/lib/utils/stream.js +327 -0
- package/dist/node_modules/langium/lib/utils/uri-utils.js +107 -0
- package/dist/node_modules/langium/lib/validation/document-validator.js +210 -0
- package/dist/node_modules/langium/lib/validation/validation-registry.js +87 -0
- package/dist/node_modules/langium/lib/workspace/ast-descriptions.js +57 -0
- package/dist/node_modules/langium/lib/workspace/ast-node-locator.js +28 -0
- package/dist/node_modules/langium/lib/workspace/configuration.js +51 -0
- package/dist/node_modules/langium/lib/workspace/document-builder.js +201 -0
- package/dist/node_modules/langium/lib/workspace/documents.js +142 -0
- package/dist/node_modules/langium/lib/workspace/file-system-provider.js +34 -0
- package/dist/node_modules/langium/lib/workspace/index-manager.js +49 -0
- package/dist/node_modules/langium/lib/workspace/profiler.js +89 -0
- package/dist/node_modules/langium/lib/workspace/workspace-lock.js +42 -0
- package/dist/node_modules/langium/lib/workspace/workspace-manager.js +66 -0
- package/dist/node_modules/layout-base/layout-base.js +1407 -0
- package/dist/node_modules/lodash-es/_DataView.js +4 -0
- package/dist/node_modules/lodash-es/_Hash.js +15 -0
- package/dist/node_modules/lodash-es/_ListCache.js +15 -0
- package/dist/node_modules/lodash-es/_Map.js +4 -0
- package/dist/node_modules/lodash-es/_MapCache.js +15 -0
- package/dist/node_modules/lodash-es/_Promise.js +4 -0
- package/dist/node_modules/lodash-es/_Set.js +4 -0
- package/dist/node_modules/lodash-es/_SetCache.js +10 -0
- package/dist/node_modules/lodash-es/_Stack.js +12 -0
- package/dist/node_modules/lodash-es/_Symbol.js +3 -0
- package/dist/node_modules/lodash-es/_Uint8Array.js +3 -0
- package/dist/node_modules/lodash-es/_WeakMap.js +4 -0
- package/dist/node_modules/lodash-es/_apply.js +11 -0
- package/dist/node_modules/lodash-es/_arrayAggregator.js +9 -0
- package/dist/node_modules/lodash-es/_arrayEach.js +6 -0
- package/dist/node_modules/lodash-es/_arrayEvery.js +6 -0
- package/dist/node_modules/lodash-es/_arrayFilter.js +9 -0
- package/dist/node_modules/lodash-es/_arrayIncludes.js +6 -0
- package/dist/node_modules/lodash-es/_arrayIncludesWith.js +6 -0
- package/dist/node_modules/lodash-es/_arrayLikeKeys.js +14 -0
- package/dist/node_modules/lodash-es/_arrayMap.js +6 -0
- package/dist/node_modules/lodash-es/_arrayPush.js +6 -0
- package/dist/node_modules/lodash-es/_arrayReduce.js +7 -0
- package/dist/node_modules/lodash-es/_arraySome.js +6 -0
- package/dist/node_modules/lodash-es/_asciiSize.js +3 -0
- package/dist/node_modules/lodash-es/_assignMergeValue.js +7 -0
- package/dist/node_modules/lodash-es/_assignValue.js +9 -0
- package/dist/node_modules/lodash-es/_assocIndexOf.js +7 -0
- package/dist/node_modules/lodash-es/_baseAggregator.js +8 -0
- package/dist/node_modules/lodash-es/_baseAssign.js +7 -0
- package/dist/node_modules/lodash-es/_baseAssignIn.js +7 -0
- package/dist/node_modules/lodash-es/_baseAssignValue.js +11 -0
- package/dist/node_modules/lodash-es/_baseClone.js +56 -0
- package/dist/node_modules/lodash-es/_baseCreate.js +12 -0
- package/dist/node_modules/lodash-es/_baseDifference.js +22 -0
- package/dist/node_modules/lodash-es/_baseEach.js +4 -0
- package/dist/node_modules/lodash-es/_baseEvery.js +9 -0
- package/dist/node_modules/lodash-es/_baseExtremum.js +10 -0
- package/dist/node_modules/lodash-es/_baseFilter.js +9 -0
- package/dist/node_modules/lodash-es/_baseFindIndex.js +6 -0
- package/dist/node_modules/lodash-es/_baseFlatten.js +12 -0
- package/dist/node_modules/lodash-es/_baseFor.js +3 -0
- package/dist/node_modules/lodash-es/_baseForOwn.js +7 -0
- package/dist/node_modules/lodash-es/_baseGet.js +9 -0
- package/dist/node_modules/lodash-es/_baseGetAllKeys.js +8 -0
- package/dist/node_modules/lodash-es/_baseGetTag.js +9 -0
- package/dist/node_modules/lodash-es/_baseGt.js +5 -0
- package/dist/node_modules/lodash-es/_baseHas.js +6 -0
- package/dist/node_modules/lodash-es/_baseHasIn.js +5 -0
- package/dist/node_modules/lodash-es/_baseIndexOf.js +8 -0
- package/dist/node_modules/lodash-es/_baseIsArguments.js +8 -0
- package/dist/node_modules/lodash-es/_baseIsEqual.js +7 -0
- package/dist/node_modules/lodash-es/_baseIsEqualDeep.js +29 -0
- package/dist/node_modules/lodash-es/_baseIsMap.js +8 -0
- package/dist/node_modules/lodash-es/_baseIsMatch.js +25 -0
- package/dist/node_modules/lodash-es/_baseIsNaN.js +5 -0
- package/dist/node_modules/lodash-es/_baseIsNative.js +10 -0
- package/dist/node_modules/lodash-es/_baseIsRegExp.js +8 -0
- package/dist/node_modules/lodash-es/_baseIsSet.js +8 -0
- package/dist/node_modules/lodash-es/_baseIsTypedArray.js +10 -0
- package/dist/node_modules/lodash-es/_baseIteratee.js +10 -0
- package/dist/node_modules/lodash-es/_baseKeys.js +11 -0
- package/dist/node_modules/lodash-es/_baseKeysIn.js +12 -0
- package/dist/node_modules/lodash-es/_baseLt.js +5 -0
- package/dist/node_modules/lodash-es/_baseMap.js +10 -0
- package/dist/node_modules/lodash-es/_baseMatches.js +11 -0
- package/dist/node_modules/lodash-es/_baseMatchesProperty.js +16 -0
- package/dist/node_modules/lodash-es/_baseMerge.js +18 -0
- package/dist/node_modules/lodash-es/_baseMergeDeep.js +30 -0
- package/dist/node_modules/lodash-es/_baseOrderBy.js +30 -0
- package/dist/node_modules/lodash-es/_basePick.js +9 -0
- package/dist/node_modules/lodash-es/_basePickBy.js +12 -0
- package/dist/node_modules/lodash-es/_baseProperty.js +7 -0
- package/dist/node_modules/lodash-es/_basePropertyDeep.js +8 -0
- package/dist/node_modules/lodash-es/_baseRange.js +7 -0
- package/dist/node_modules/lodash-es/_baseReduce.js +7 -0
- package/dist/node_modules/lodash-es/_baseRest.js +8 -0
- package/dist/node_modules/lodash-es/_baseSet.js +21 -0
- package/dist/node_modules/lodash-es/_baseSetToString.js +12 -0
- package/dist/node_modules/lodash-es/_baseSlice.js +8 -0
- package/dist/node_modules/lodash-es/_baseSome.js +9 -0
- package/dist/node_modules/lodash-es/_baseSortBy.js +7 -0
- package/dist/node_modules/lodash-es/_baseTimes.js +6 -0
- package/dist/node_modules/lodash-es/_baseToString.js +14 -0
- package/dist/node_modules/lodash-es/_baseTrim.js +7 -0
- package/dist/node_modules/lodash-es/_baseUnary.js +7 -0
- package/dist/node_modules/lodash-es/_baseUniq.js +26 -0
- package/dist/node_modules/lodash-es/_baseValues.js +8 -0
- package/dist/node_modules/lodash-es/_baseZipObject.js +9 -0
- package/dist/node_modules/lodash-es/_cacheHas.js +5 -0
- package/dist/node_modules/lodash-es/_castFunction.js +6 -0
- package/dist/node_modules/lodash-es/_castPath.js +9 -0
- package/dist/node_modules/lodash-es/_cloneArrayBuffer.js +7 -0
- package/dist/node_modules/lodash-es/_cloneBuffer.js +9 -0
- package/dist/node_modules/lodash-es/_cloneDataView.js +7 -0
- package/dist/node_modules/lodash-es/_cloneRegExp.js +7 -0
- package/dist/node_modules/lodash-es/_cloneSymbol.js +7 -0
- package/dist/node_modules/lodash-es/_cloneTypedArray.js +7 -0
- package/dist/node_modules/lodash-es/_compareAscending.js +11 -0
- package/dist/node_modules/lodash-es/_compareMultiple.js +10 -0
- package/dist/node_modules/lodash-es/_copyArray.js +7 -0
- package/dist/node_modules/lodash-es/_copyObject.js +13 -0
- package/dist/node_modules/lodash-es/_copySymbols.js +7 -0
- package/dist/node_modules/lodash-es/_copySymbolsIn.js +7 -0
- package/dist/node_modules/lodash-es/_coreJsData.js +3 -0
- package/dist/node_modules/lodash-es/_createAggregator.js +12 -0
- package/dist/node_modules/lodash-es/_createAssigner.js +14 -0
- package/dist/node_modules/lodash-es/_createBaseEach.js +11 -0
- package/dist/node_modules/lodash-es/_createBaseFor.js +11 -0
- package/dist/node_modules/lodash-es/_createFind.js +18 -0
- package/dist/node_modules/lodash-es/_createRange.js +10 -0
- package/dist/node_modules/lodash-es/_createSet.js +7 -0
- package/dist/node_modules/lodash-es/_defineProperty.js +8 -0
- package/dist/node_modules/lodash-es/_equalArrays.js +34 -0
- package/dist/node_modules/lodash-es/_equalByTag.js +34 -0
- package/dist/node_modules/lodash-es/_equalObjects.js +31 -0
- package/dist/node_modules/lodash-es/_flatRest.js +8 -0
- package/dist/node_modules/lodash-es/_freeGlobal.js +2 -0
- package/dist/node_modules/lodash-es/_getAllKeys.js +8 -0
- package/dist/node_modules/lodash-es/_getAllKeysIn.js +8 -0
- package/dist/node_modules/lodash-es/_getMapData.js +7 -0
- package/dist/node_modules/lodash-es/_getMatchData.js +15 -0
- package/dist/node_modules/lodash-es/_getNative.js +8 -0
- package/dist/node_modules/lodash-es/_getPrototype.js +3 -0
- package/dist/node_modules/lodash-es/_getRawTag.js +13 -0
- package/dist/node_modules/lodash-es/_getSymbols.js +8 -0
- package/dist/node_modules/lodash-es/_getSymbolsIn.js +9 -0
- package/dist/node_modules/lodash-es/_getTag.js +21 -0
- package/dist/node_modules/lodash-es/_getValue.js +5 -0
- package/dist/node_modules/lodash-es/_hasPath.js +17 -0
- package/dist/node_modules/lodash-es/_hasUnicode.js +6 -0
- package/dist/node_modules/lodash-es/_hashClear.js +6 -0
- package/dist/node_modules/lodash-es/_hashDelete.js +6 -0
- package/dist/node_modules/lodash-es/_hashGet.js +12 -0
- package/dist/node_modules/lodash-es/_hashHas.js +8 -0
- package/dist/node_modules/lodash-es/_hashSet.js +8 -0
- package/dist/node_modules/lodash-es/_initCloneArray.js +7 -0
- package/dist/node_modules/lodash-es/_initCloneByTag.js +32 -0
- package/dist/node_modules/lodash-es/_initCloneObject.js +8 -0
- package/dist/node_modules/lodash-es/_isFlattenable.js +9 -0
- package/dist/node_modules/lodash-es/_isIndex.js +7 -0
- package/dist/node_modules/lodash-es/_isIterateeCall.js +11 -0
- package/dist/node_modules/lodash-es/_isKey.js +10 -0
- package/dist/node_modules/lodash-es/_isKeyable.js +6 -0
- package/dist/node_modules/lodash-es/_isMasked.js +10 -0
- package/dist/node_modules/lodash-es/_isPrototype.js +7 -0
- package/dist/node_modules/lodash-es/_isStrictComparable.js +6 -0
- package/dist/node_modules/lodash-es/_listCacheClear.js +5 -0
- package/dist/node_modules/lodash-es/_listCacheDelete.js +8 -0
- package/dist/node_modules/lodash-es/_listCacheGet.js +7 -0
- package/dist/node_modules/lodash-es/_listCacheHas.js +6 -0
- package/dist/node_modules/lodash-es/_listCacheSet.js +7 -0
- package/dist/node_modules/lodash-es/_mapCacheClear.js +12 -0
- package/dist/node_modules/lodash-es/_mapCacheDelete.js +7 -0
- package/dist/node_modules/lodash-es/_mapCacheGet.js +6 -0
- package/dist/node_modules/lodash-es/_mapCacheHas.js +6 -0
- package/dist/node_modules/lodash-es/_mapCacheSet.js +7 -0
- package/dist/node_modules/lodash-es/_mapToArray.js +8 -0
- package/dist/node_modules/lodash-es/_matchesStrictComparable.js +7 -0
- package/dist/node_modules/lodash-es/_memoizeCapped.js +10 -0
- package/dist/node_modules/lodash-es/_nativeCreate.js +3 -0
- package/dist/node_modules/lodash-es/_nativeKeys.js +3 -0
- package/dist/node_modules/lodash-es/_nativeKeysIn.js +7 -0
- package/dist/node_modules/lodash-es/_nodeUtil.js +7 -0
- package/dist/node_modules/lodash-es/_objectToString.js +6 -0
- package/dist/node_modules/lodash-es/_overArg.js +7 -0
- package/dist/node_modules/lodash-es/_overRest.js +12 -0
- package/dist/node_modules/lodash-es/_root.js +3 -0
- package/dist/node_modules/lodash-es/_safeGet.js +5 -0
- package/dist/node_modules/lodash-es/_setCacheAdd.js +6 -0
- package/dist/node_modules/lodash-es/_setCacheHas.js +5 -0
- package/dist/node_modules/lodash-es/_setToArray.js +8 -0
- package/dist/node_modules/lodash-es/_setToString.js +4 -0
- package/dist/node_modules/lodash-es/_shortOut.js +13 -0
- package/dist/node_modules/lodash-es/_stackClear.js +6 -0
- package/dist/node_modules/lodash-es/_stackDelete.js +6 -0
- package/dist/node_modules/lodash-es/_stackGet.js +5 -0
- package/dist/node_modules/lodash-es/_stackHas.js +5 -0
- package/dist/node_modules/lodash-es/_stackSet.js +15 -0
- package/dist/node_modules/lodash-es/_strictIndexOf.js +6 -0
- package/dist/node_modules/lodash-es/_stringSize.js +8 -0
- package/dist/node_modules/lodash-es/_stringToPath.js +8 -0
- package/dist/node_modules/lodash-es/_toKey.js +9 -0
- package/dist/node_modules/lodash-es/_toSource.js +14 -0
- package/dist/node_modules/lodash-es/_trimmedEndIndex.js +7 -0
- package/dist/node_modules/lodash-es/_unicodeSize.js +17 -0
- package/dist/node_modules/lodash-es/assign.js +14 -0
- package/dist/node_modules/lodash-es/clone.js +7 -0
- package/dist/node_modules/lodash-es/cloneDeep.js +7 -0
- package/dist/node_modules/lodash-es/compact.js +9 -0
- package/dist/node_modules/lodash-es/constant.js +7 -0
- package/dist/node_modules/lodash-es/defaults.js +14 -0
- package/dist/node_modules/lodash-es/difference.js +8 -0
- package/dist/node_modules/lodash-es/drop.js +8 -0
- package/dist/node_modules/lodash-es/dropRight.js +8 -0
- package/dist/node_modules/lodash-es/eq.js +5 -0
- package/dist/node_modules/lodash-es/every.js +11 -0
- package/dist/node_modules/lodash-es/filter.js +9 -0
- package/dist/node_modules/lodash-es/find.js +4 -0
- package/dist/node_modules/lodash-es/findIndex.js +12 -0
- package/dist/node_modules/lodash-es/flatMap.js +7 -0
- package/dist/node_modules/lodash-es/flatten.js +6 -0
- package/dist/node_modules/lodash-es/forEach.js +9 -0
- package/dist/node_modules/lodash-es/forIn.js +8 -0
- package/dist/node_modules/lodash-es/forOwn.js +7 -0
- package/dist/node_modules/lodash-es/get.js +7 -0
- package/dist/node_modules/lodash-es/groupBy.js +6 -0
- package/dist/node_modules/lodash-es/has.js +7 -0
- package/dist/node_modules/lodash-es/hasIn.js +7 -0
- package/dist/node_modules/lodash-es/head.js +5 -0
- package/dist/node_modules/lodash-es/identity.js +5 -0
- package/dist/node_modules/lodash-es/includes.js +13 -0
- package/dist/node_modules/lodash-es/indexOf.js +11 -0
- package/dist/node_modules/lodash-es/isArguments.js +8 -0
- package/dist/node_modules/lodash-es/isArray.js +2 -0
- package/dist/node_modules/lodash-es/isArrayLike.js +7 -0
- package/dist/node_modules/lodash-es/isArrayLikeObject.js +7 -0
- package/dist/node_modules/lodash-es/isBuffer.js +4 -0
- package/dist/node_modules/lodash-es/isEmpty.js +20 -0
- package/dist/node_modules/lodash-es/isFunction.js +10 -0
- package/dist/node_modules/lodash-es/isLength.js +6 -0
- package/dist/node_modules/lodash-es/isMap.js +5 -0
- package/dist/node_modules/lodash-es/isObject.js +6 -0
- package/dist/node_modules/lodash-es/isObjectLike.js +5 -0
- package/dist/node_modules/lodash-es/isPlainObject.js +13 -0
- package/dist/node_modules/lodash-es/isRegExp.js +5 -0
- package/dist/node_modules/lodash-es/isSet.js +5 -0
- package/dist/node_modules/lodash-es/isString.js +9 -0
- package/dist/node_modules/lodash-es/isSymbol.js +8 -0
- package/dist/node_modules/lodash-es/isTypedArray.js +5 -0
- package/dist/node_modules/lodash-es/isUndefined.js +5 -0
- package/dist/node_modules/lodash-es/keys.js +8 -0
- package/dist/node_modules/lodash-es/keysIn.js +8 -0
- package/dist/node_modules/lodash-es/last.js +6 -0
- package/dist/node_modules/lodash-es/map.js +9 -0
- package/dist/node_modules/lodash-es/mapValues.js +11 -0
- package/dist/node_modules/lodash-es/max.js +8 -0
- package/dist/node_modules/lodash-es/memoize.js +15 -0
- package/dist/node_modules/lodash-es/merge.js +6 -0
- package/dist/node_modules/lodash-es/min.js +8 -0
- package/dist/node_modules/lodash-es/minBy.js +8 -0
- package/dist/node_modules/lodash-es/negate.js +16 -0
- package/dist/node_modules/lodash-es/noop.js +3 -0
- package/dist/node_modules/lodash-es/now.js +5 -0
- package/dist/node_modules/lodash-es/pick.js +6 -0
- package/dist/node_modules/lodash-es/pickBy.js +15 -0
- package/dist/node_modules/lodash-es/property.js +9 -0
- package/dist/node_modules/lodash-es/range.js +3 -0
- package/dist/node_modules/lodash-es/reduce.js +11 -0
- package/dist/node_modules/lodash-es/reject.js +10 -0
- package/dist/node_modules/lodash-es/size.js +14 -0
- package/dist/node_modules/lodash-es/some.js +11 -0
- package/dist/node_modules/lodash-es/sortBy.js +10 -0
- package/dist/node_modules/lodash-es/stubArray.js +5 -0
- package/dist/node_modules/lodash-es/stubFalse.js +5 -0
- package/dist/node_modules/lodash-es/toFinite.js +7 -0
- package/dist/node_modules/lodash-es/toInteger.js +7 -0
- package/dist/node_modules/lodash-es/toNumber.js +18 -0
- package/dist/node_modules/lodash-es/toPlainObject.js +7 -0
- package/dist/node_modules/lodash-es/toString.js +6 -0
- package/dist/node_modules/lodash-es/union.js +8 -0
- package/dist/node_modules/lodash-es/uniq.js +6 -0
- package/dist/node_modules/lodash-es/uniqBy.js +7 -0
- package/dist/node_modules/lodash-es/uniqueId.js +8 -0
- package/dist/node_modules/lodash-es/values.js +7 -0
- package/dist/node_modules/lodash-es/zipObject.js +7 -0
- package/dist/node_modules/longest-streak/index.js +7 -0
- package/dist/node_modules/markdown-table/index.js +57 -0
- package/dist/node_modules/marked/lib/marked.esm.js +1384 -0
- package/dist/node_modules/mdast-util-find-and-replace/lib/index.js +59 -0
- package/dist/node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp/index.js +5 -0
- package/dist/node_modules/mdast-util-gfm/lib/index.js +24 -0
- package/dist/node_modules/mdast-util-gfm-autolink-literal/lib/index.js +127 -0
- package/dist/node_modules/mdast-util-gfm-footnote/lib/index.js +95 -0
- package/dist/node_modules/mdast-util-gfm-strikethrough/lib/index.js +47 -0
- package/dist/node_modules/mdast-util-gfm-table/lib/index.js +135 -0
- package/dist/node_modules/mdast-util-gfm-task-list-item/lib/index.js +56 -0
- package/dist/node_modules/mdast-util-math/lib/index.js +142 -0
- package/dist/node_modules/mdast-util-phrasing/lib/index.js +20 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js +10 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/break.js +7 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/code.js +34 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/definition.js +22 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js +23 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/heading.js +22 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/html.js +8 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js +21 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/image.js +26 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/index.js +42 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js +17 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js +21 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/link.js +39 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/list-item.js +16 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/list.js +24 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js +5 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/root.js +7 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/strong.js +23 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/text.js +4 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js +7 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js +9 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-fence.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-quote.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-rule.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/check-strong.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js +4 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/encode-info.js +36 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js +4 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js +10 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js +6 -0
- package/dist/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js +10 -0
- package/dist/node_modules/mdast-util-to-string/lib/index.js +22 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/architectureDiagram-VXUJARFQ.js +673 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/blockDiagram-VD42YOAC.js +3010 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/c4Diagram-YG6GDRKO.js +2955 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-4BX2VUAB.js +6 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-55IACEB6.js +8 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ABZYJK2D.js +1547 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-AGHRB4JF.js +29 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-ATLVNIR6.js +65 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-B4BG7PRW.js +3110 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-CVBHYZKI.js +10 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DI55MBZ5.js +1994 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-DR5Q36YT.js +135 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-EXTU4WIE.js +9 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-FMBD7UC4.js +3 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-HN2XXSSU.js +74 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JA3XYJ7Z.js +247 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-JZLCHNYA.js +3516 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-MI3HLSF2.js +1140 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-N4CR4FBY.js +39 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QN33PNHL.js +23 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QXUST7PY.js +497 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-QZHKN3VN.js +11 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-S3R3BYOJ.js +338 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/chunk-TZMSLE5B.js +55 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-2ON5EDUG.js +26 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/classDiagram-v2-WZHVMYZB.js +26 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/cose-bilkent-S5V4N54A.js +219 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/dagre-6UL2VRFP.js +263 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-PSM6KHXK.js +283 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-QEK2KX5R.js +211 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/diagram-S2PKOQOG.js +129 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/erDiagram-Q2GNP2WA.js +1599 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/flowDiagram-NV44I4VS.js +4128 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/ganttDiagram-JELNMOA3.js +1688 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/gitGraphDiagram-V2S2FVAM.js +621 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/infoDiagram-HS3SLOUP.js +18 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/journeyDiagram-XKPGCS4Q.js +883 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/kanban-definition-3W4ZIXB7.js +970 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/mindmap-definition-VGOIOE7T.js +931 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/pieDiagram-ADFJNKIX.js +117 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/quadrantDiagram-AYHSOK5B.js +1970 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/requirementDiagram-UZGBJVZJ.js +2187 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sankeyDiagram-TZEHDZUN.js +519 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/sequenceDiagram-WL72ISMW.js +3560 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-FKZM4ZOC.js +220 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/stateDiagram-v2-4FDKWEC3.js +25 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/timeline-definition-IT6M3QCI.js +833 -0
- package/dist/node_modules/mermaid/dist/chunks/mermaid.core/xychartDiagram-PRI3JC2R.js +1975 -0
- package/dist/node_modules/mermaid/dist/mermaid.core.js +662 -0
- package/dist/node_modules/micromark-core-commonmark/lib/blank-line.js +16 -0
- package/dist/node_modules/micromark-extension-gfm/index.js +16 -0
- package/dist/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js +172 -0
- package/dist/node_modules/micromark-extension-gfm-footnote/lib/syntax.js +191 -0
- package/dist/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js +94 -0
- package/dist/node_modules/micromark-extension-gfm-table/lib/edit-map.js +41 -0
- package/dist/node_modules/micromark-extension-gfm-table/lib/infer.js +18 -0
- package/dist/node_modules/micromark-extension-gfm-table/lib/syntax.js +199 -0
- package/dist/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js +32 -0
- package/dist/node_modules/micromark-extension-math/lib/math-flow.js +72 -0
- package/dist/node_modules/micromark-extension-math/lib/math-text.js +44 -0
- package/dist/node_modules/micromark-extension-math/lib/syntax.js +9 -0
- package/dist/node_modules/micromark-factory-space/index.js +12 -0
- package/dist/node_modules/micromark-util-character/index.js +21 -0
- package/dist/node_modules/micromark-util-chunked/index.js +6 -0
- package/dist/node_modules/micromark-util-classify-character/index.js +6 -0
- package/dist/node_modules/micromark-util-combine-extensions/index.js +24 -0
- package/dist/node_modules/micromark-util-normalize-identifier/index.js +4 -0
- package/dist/node_modules/micromark-util-resolve-all/index.js +9 -0
- package/dist/node_modules/property-information/index.js +23 -0
- package/dist/node_modules/property-information/lib/aria.js +59 -0
- package/dist/node_modules/property-information/lib/find.js +29 -0
- package/dist/node_modules/property-information/lib/html.js +314 -0
- package/dist/node_modules/property-information/lib/normalize.js +4 -0
- package/dist/node_modules/property-information/lib/svg.js +560 -0
- package/dist/node_modules/property-information/lib/util/case-insensitive-transform.js +5 -0
- package/dist/node_modules/property-information/lib/util/case-sensitive-transform.js +4 -0
- package/dist/node_modules/property-information/lib/util/create.js +12 -0
- package/dist/node_modules/property-information/lib/util/defined-info.js +16 -0
- package/dist/node_modules/property-information/lib/util/info.js +7 -0
- package/dist/node_modules/property-information/lib/util/merge.js +7 -0
- package/dist/node_modules/property-information/lib/util/schema.js +7 -0
- package/dist/node_modules/property-information/lib/util/types.js +15 -0
- package/dist/node_modules/property-information/lib/xlink.js +17 -0
- package/dist/node_modules/property-information/lib/xml.js +13 -0
- package/dist/node_modules/property-information/lib/xmlns.js +12 -0
- package/dist/node_modules/rehype-katex/lib/index.js +60 -0
- package/dist/node_modules/remark-gfm/lib/index.js +8 -0
- package/dist/node_modules/remark-math/lib/index.js +8 -0
- package/dist/node_modules/roughjs/bundled/rough.esm.js +1350 -0
- package/dist/node_modules/space-separated-tokens/index.js +5 -0
- package/dist/node_modules/stylis/src/Enum.js +2 -0
- package/dist/node_modules/stylis/src/Parser.js +93 -0
- package/dist/node_modules/stylis/src/Serializer.js +19 -0
- package/dist/node_modules/stylis/src/Tokenizer.js +104 -0
- package/dist/node_modules/stylis/src/Utility.js +26 -0
- package/dist/node_modules/ts-dedent/esm/index.js +25 -0
- package/dist/node_modules/unist-util-find-after/lib/index.js +10 -0
- package/dist/node_modules/unist-util-is/lib/index.js +45 -0
- package/dist/node_modules/unist-util-visit/lib/index.js +10 -0
- package/dist/node_modules/unist-util-visit-parents/lib/color.js +4 -0
- package/dist/node_modules/unist-util-visit-parents/lib/index.js +35 -0
- package/dist/node_modules/uuid/dist/esm-browser/native.js +2 -0
- package/dist/node_modules/uuid/dist/esm-browser/rng.js +9 -0
- package/dist/node_modules/uuid/dist/esm-browser/stringify.js +6 -0
- package/dist/node_modules/uuid/dist/esm-browser/v4.js +17 -0
- package/dist/node_modules/vscode-jsonrpc/browser.js +7 -0
- package/dist/node_modules/vscode-jsonrpc/lib/browser/main.js +52 -0
- package/dist/node_modules/vscode-jsonrpc/lib/browser/ril.js +120 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/api.js +337 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/cancellation.js +57 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/connection.js +647 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/disposable.js +13 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/events.js +64 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/is.js +34 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/linkedMap.js +235 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/messageBuffer.js +93 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/messageReader.js +129 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/messageWriter.js +85 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/messages.js +161 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/ral.js +18 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/semaphore.js +44 -0
- package/dist/node_modules/vscode-jsonrpc/lib/common/sharedArrayCancellation.js +58 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/browser/main.js +28 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/api.js +36 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/connection.js +12 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/messages.js +31 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.callHierarchy.js +19 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.colorProvider.js +15 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.configuration.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.declaration.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.diagnostic.js +33 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.fileOperations.js +35 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.foldingRange.js +15 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.implementation.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlayHint.js +19 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineCompletion.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.inlineValue.js +15 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.js +674 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.linkedEditingRange.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.moniker.js +19 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.notebook.js +126 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.progress.js +24 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.selectionRange.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.semanticTokens.js +31 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.showDocument.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeDefinition.js +11 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.typeHierarchy.js +19 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/protocol.workspaceFolder.js +15 -0
- package/dist/node_modules/vscode-languageserver-protocol/lib/common/utils/is.js +42 -0
- package/dist/node_modules/vscode-languageserver-textdocument/lib/esm/main.js +138 -0
- package/dist/node_modules/vscode-languageserver-types/lib/esm/main.js +1084 -0
- package/dist/node_modules/vscode-uri/lib/esm/index.js +373 -0
- package/dist/node_modules/web-namespaces/index.js +9 -0
- package/dist/pages/WorkspacePage.js +63 -0
- package/dist/pages/WorkspacesPage.js +36 -0
- package/package.json +32 -32
|
@@ -0,0 +1,1084 @@
|
|
|
1
|
+
import { __esmMin, __export } from "../../../../_virtual/rolldown_runtime.js";
|
|
2
|
+
var main_exports = /* @__PURE__ */ __export({
|
|
3
|
+
AnnotatedTextEdit: () => AnnotatedTextEdit,
|
|
4
|
+
ChangeAnnotation: () => ChangeAnnotation,
|
|
5
|
+
ChangeAnnotationIdentifier: () => ChangeAnnotationIdentifier,
|
|
6
|
+
CodeAction: () => CodeAction,
|
|
7
|
+
CodeActionContext: () => CodeActionContext,
|
|
8
|
+
CodeActionKind: () => CodeActionKind,
|
|
9
|
+
CodeActionTriggerKind: () => CodeActionTriggerKind,
|
|
10
|
+
CodeDescription: () => CodeDescription,
|
|
11
|
+
CodeLens: () => CodeLens,
|
|
12
|
+
Color: () => Color,
|
|
13
|
+
ColorInformation: () => ColorInformation,
|
|
14
|
+
ColorPresentation: () => ColorPresentation,
|
|
15
|
+
Command: () => Command,
|
|
16
|
+
CompletionItem: () => CompletionItem,
|
|
17
|
+
CompletionItemKind: () => CompletionItemKind,
|
|
18
|
+
CompletionItemLabelDetails: () => CompletionItemLabelDetails,
|
|
19
|
+
CompletionItemTag: () => CompletionItemTag,
|
|
20
|
+
CompletionList: () => CompletionList,
|
|
21
|
+
CreateFile: () => CreateFile,
|
|
22
|
+
DeleteFile: () => DeleteFile,
|
|
23
|
+
Diagnostic: () => Diagnostic,
|
|
24
|
+
DiagnosticRelatedInformation: () => DiagnosticRelatedInformation,
|
|
25
|
+
DiagnosticSeverity: () => DiagnosticSeverity,
|
|
26
|
+
DiagnosticTag: () => DiagnosticTag,
|
|
27
|
+
DocumentHighlight: () => DocumentHighlight,
|
|
28
|
+
DocumentHighlightKind: () => DocumentHighlightKind,
|
|
29
|
+
DocumentLink: () => DocumentLink,
|
|
30
|
+
DocumentSymbol: () => DocumentSymbol,
|
|
31
|
+
DocumentUri: () => DocumentUri,
|
|
32
|
+
EOL: () => EOL,
|
|
33
|
+
FoldingRange: () => FoldingRange,
|
|
34
|
+
FoldingRangeKind: () => FoldingRangeKind,
|
|
35
|
+
FormattingOptions: () => FormattingOptions,
|
|
36
|
+
Hover: () => Hover,
|
|
37
|
+
InlayHint: () => InlayHint,
|
|
38
|
+
InlayHintKind: () => InlayHintKind,
|
|
39
|
+
InlayHintLabelPart: () => InlayHintLabelPart,
|
|
40
|
+
InlineCompletionContext: () => InlineCompletionContext,
|
|
41
|
+
InlineCompletionItem: () => InlineCompletionItem,
|
|
42
|
+
InlineCompletionList: () => InlineCompletionList,
|
|
43
|
+
InlineCompletionTriggerKind: () => InlineCompletionTriggerKind,
|
|
44
|
+
InlineValueContext: () => InlineValueContext,
|
|
45
|
+
InlineValueEvaluatableExpression: () => InlineValueEvaluatableExpression,
|
|
46
|
+
InlineValueText: () => InlineValueText,
|
|
47
|
+
InlineValueVariableLookup: () => InlineValueVariableLookup,
|
|
48
|
+
InsertReplaceEdit: () => InsertReplaceEdit,
|
|
49
|
+
InsertTextFormat: () => InsertTextFormat,
|
|
50
|
+
InsertTextMode: () => InsertTextMode,
|
|
51
|
+
Location: () => Location,
|
|
52
|
+
LocationLink: () => LocationLink,
|
|
53
|
+
MarkedString: () => MarkedString,
|
|
54
|
+
MarkupContent: () => MarkupContent,
|
|
55
|
+
MarkupKind: () => MarkupKind,
|
|
56
|
+
OptionalVersionedTextDocumentIdentifier: () => OptionalVersionedTextDocumentIdentifier,
|
|
57
|
+
ParameterInformation: () => ParameterInformation,
|
|
58
|
+
Position: () => Position,
|
|
59
|
+
Range: () => Range,
|
|
60
|
+
RenameFile: () => RenameFile,
|
|
61
|
+
SelectedCompletionInfo: () => SelectedCompletionInfo,
|
|
62
|
+
SelectionRange: () => SelectionRange,
|
|
63
|
+
SemanticTokenModifiers: () => SemanticTokenModifiers,
|
|
64
|
+
SemanticTokenTypes: () => SemanticTokenTypes,
|
|
65
|
+
SemanticTokens: () => SemanticTokens,
|
|
66
|
+
SignatureInformation: () => SignatureInformation,
|
|
67
|
+
StringValue: () => StringValue,
|
|
68
|
+
SymbolInformation: () => SymbolInformation,
|
|
69
|
+
SymbolKind: () => SymbolKind,
|
|
70
|
+
SymbolTag: () => SymbolTag,
|
|
71
|
+
TextDocument: () => TextDocument,
|
|
72
|
+
TextDocumentEdit: () => TextDocumentEdit,
|
|
73
|
+
TextDocumentIdentifier: () => TextDocumentIdentifier,
|
|
74
|
+
TextDocumentItem: () => TextDocumentItem,
|
|
75
|
+
TextEdit: () => TextEdit,
|
|
76
|
+
URI: () => URI,
|
|
77
|
+
VersionedTextDocumentIdentifier: () => VersionedTextDocumentIdentifier,
|
|
78
|
+
WorkspaceChange: () => WorkspaceChange,
|
|
79
|
+
WorkspaceEdit: () => WorkspaceEdit,
|
|
80
|
+
WorkspaceFolder: () => WorkspaceFolder,
|
|
81
|
+
WorkspaceSymbol: () => WorkspaceSymbol,
|
|
82
|
+
integer: () => integer,
|
|
83
|
+
uinteger: () => uinteger
|
|
84
|
+
}, 1), DocumentUri, URI, integer, uinteger, Position, Range, Location, LocationLink, Color, ColorInformation, ColorPresentation, FoldingRangeKind, FoldingRange, DiagnosticRelatedInformation, DiagnosticSeverity, DiagnosticTag, CodeDescription, Diagnostic, Command, TextEdit, ChangeAnnotation, ChangeAnnotationIdentifier, AnnotatedTextEdit, TextDocumentEdit, CreateFile, RenameFile, DeleteFile, WorkspaceEdit, TextEditChangeImpl, ChangeAnnotations, WorkspaceChange, TextDocumentIdentifier, VersionedTextDocumentIdentifier, OptionalVersionedTextDocumentIdentifier, TextDocumentItem, MarkupKind, MarkupContent, CompletionItemKind, InsertTextFormat, CompletionItemTag, InsertReplaceEdit, InsertTextMode, CompletionItemLabelDetails, CompletionItem, CompletionList, MarkedString, Hover, ParameterInformation, SignatureInformation, DocumentHighlightKind, DocumentHighlight, SymbolKind, SymbolTag, SymbolInformation, WorkspaceSymbol, DocumentSymbol, CodeActionKind, CodeActionTriggerKind, CodeActionContext, CodeAction, CodeLens, FormattingOptions, DocumentLink, SelectionRange, SemanticTokenTypes, SemanticTokenModifiers, SemanticTokens, InlineValueText, InlineValueVariableLookup, InlineValueEvaluatableExpression, InlineValueContext, InlayHintKind, InlayHintLabelPart, InlayHint, StringValue, InlineCompletionItem, InlineCompletionList, InlineCompletionTriggerKind, SelectedCompletionInfo, InlineCompletionContext, WorkspaceFolder, EOL, TextDocument, FullTextDocument, Is, init_main = __esmMin((() => {
|
|
85
|
+
(function(p) {
|
|
86
|
+
function H(p) {
|
|
87
|
+
return typeof p == "string";
|
|
88
|
+
}
|
|
89
|
+
p.is = H;
|
|
90
|
+
})(DocumentUri ||= {}), (function(p) {
|
|
91
|
+
function H(p) {
|
|
92
|
+
return typeof p == "string";
|
|
93
|
+
}
|
|
94
|
+
p.is = H;
|
|
95
|
+
})(URI ||= {}), (function(p) {
|
|
96
|
+
p.MIN_VALUE = -2147483648, p.MAX_VALUE = 2147483647;
|
|
97
|
+
function H(H) {
|
|
98
|
+
return typeof H == "number" && p.MIN_VALUE <= H && H <= p.MAX_VALUE;
|
|
99
|
+
}
|
|
100
|
+
p.is = H;
|
|
101
|
+
})(integer ||= {}), (function(p) {
|
|
102
|
+
p.MIN_VALUE = 0, p.MAX_VALUE = 2147483647;
|
|
103
|
+
function H(H) {
|
|
104
|
+
return typeof H == "number" && p.MIN_VALUE <= H && H <= p.MAX_VALUE;
|
|
105
|
+
}
|
|
106
|
+
p.is = H;
|
|
107
|
+
})(uinteger ||= {}), (function(p) {
|
|
108
|
+
function H(p, H) {
|
|
109
|
+
return p === Number.MAX_VALUE && (p = uinteger.MAX_VALUE), H === Number.MAX_VALUE && (H = uinteger.MAX_VALUE), {
|
|
110
|
+
line: p,
|
|
111
|
+
character: H
|
|
112
|
+
};
|
|
113
|
+
}
|
|
114
|
+
p.create = H;
|
|
115
|
+
function U(p) {
|
|
116
|
+
let H = p;
|
|
117
|
+
return Is.objectLiteral(H) && Is.uinteger(H.line) && Is.uinteger(H.character);
|
|
118
|
+
}
|
|
119
|
+
p.is = U;
|
|
120
|
+
})(Position ||= {}), (function(p) {
|
|
121
|
+
function H(p, H, U, W) {
|
|
122
|
+
if (Is.uinteger(p) && Is.uinteger(H) && Is.uinteger(U) && Is.uinteger(W)) return {
|
|
123
|
+
start: Position.create(p, H),
|
|
124
|
+
end: Position.create(U, W)
|
|
125
|
+
};
|
|
126
|
+
if (Position.is(p) && Position.is(H)) return {
|
|
127
|
+
start: p,
|
|
128
|
+
end: H
|
|
129
|
+
};
|
|
130
|
+
throw Error(`Range#create called with invalid arguments[${p}, ${H}, ${U}, ${W}]`);
|
|
131
|
+
}
|
|
132
|
+
p.create = H;
|
|
133
|
+
function U(p) {
|
|
134
|
+
let H = p;
|
|
135
|
+
return Is.objectLiteral(H) && Position.is(H.start) && Position.is(H.end);
|
|
136
|
+
}
|
|
137
|
+
p.is = U;
|
|
138
|
+
})(Range ||= {}), (function(p) {
|
|
139
|
+
function H(p, H) {
|
|
140
|
+
return {
|
|
141
|
+
uri: p,
|
|
142
|
+
range: H
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
p.create = H;
|
|
146
|
+
function U(p) {
|
|
147
|
+
let H = p;
|
|
148
|
+
return Is.objectLiteral(H) && Range.is(H.range) && (Is.string(H.uri) || Is.undefined(H.uri));
|
|
149
|
+
}
|
|
150
|
+
p.is = U;
|
|
151
|
+
})(Location ||= {}), (function(p) {
|
|
152
|
+
function H(p, H, U, W) {
|
|
153
|
+
return {
|
|
154
|
+
targetUri: p,
|
|
155
|
+
targetRange: H,
|
|
156
|
+
targetSelectionRange: U,
|
|
157
|
+
originSelectionRange: W
|
|
158
|
+
};
|
|
159
|
+
}
|
|
160
|
+
p.create = H;
|
|
161
|
+
function U(p) {
|
|
162
|
+
let H = p;
|
|
163
|
+
return Is.objectLiteral(H) && Range.is(H.targetRange) && Is.string(H.targetUri) && Range.is(H.targetSelectionRange) && (Range.is(H.originSelectionRange) || Is.undefined(H.originSelectionRange));
|
|
164
|
+
}
|
|
165
|
+
p.is = U;
|
|
166
|
+
})(LocationLink ||= {}), (function(p) {
|
|
167
|
+
function H(p, H, U, W) {
|
|
168
|
+
return {
|
|
169
|
+
red: p,
|
|
170
|
+
green: H,
|
|
171
|
+
blue: U,
|
|
172
|
+
alpha: W
|
|
173
|
+
};
|
|
174
|
+
}
|
|
175
|
+
p.create = H;
|
|
176
|
+
function U(p) {
|
|
177
|
+
let H = p;
|
|
178
|
+
return Is.objectLiteral(H) && Is.numberRange(H.red, 0, 1) && Is.numberRange(H.green, 0, 1) && Is.numberRange(H.blue, 0, 1) && Is.numberRange(H.alpha, 0, 1);
|
|
179
|
+
}
|
|
180
|
+
p.is = U;
|
|
181
|
+
})(Color ||= {}), (function(p) {
|
|
182
|
+
function H(p, H) {
|
|
183
|
+
return {
|
|
184
|
+
range: p,
|
|
185
|
+
color: H
|
|
186
|
+
};
|
|
187
|
+
}
|
|
188
|
+
p.create = H;
|
|
189
|
+
function U(p) {
|
|
190
|
+
let H = p;
|
|
191
|
+
return Is.objectLiteral(H) && Range.is(H.range) && Color.is(H.color);
|
|
192
|
+
}
|
|
193
|
+
p.is = U;
|
|
194
|
+
})(ColorInformation ||= {}), (function(p) {
|
|
195
|
+
function H(p, H, U) {
|
|
196
|
+
return {
|
|
197
|
+
label: p,
|
|
198
|
+
textEdit: H,
|
|
199
|
+
additionalTextEdits: U
|
|
200
|
+
};
|
|
201
|
+
}
|
|
202
|
+
p.create = H;
|
|
203
|
+
function U(p) {
|
|
204
|
+
let H = p;
|
|
205
|
+
return Is.objectLiteral(H) && Is.string(H.label) && (Is.undefined(H.textEdit) || TextEdit.is(H)) && (Is.undefined(H.additionalTextEdits) || Is.typedArray(H.additionalTextEdits, TextEdit.is));
|
|
206
|
+
}
|
|
207
|
+
p.is = U;
|
|
208
|
+
})(ColorPresentation ||= {}), (function(p) {
|
|
209
|
+
p.Comment = "comment", p.Imports = "imports", p.Region = "region";
|
|
210
|
+
})(FoldingRangeKind ||= {}), (function(p) {
|
|
211
|
+
function H(p, H, U, W, G, K) {
|
|
212
|
+
let q = {
|
|
213
|
+
startLine: p,
|
|
214
|
+
endLine: H
|
|
215
|
+
};
|
|
216
|
+
return Is.defined(U) && (q.startCharacter = U), Is.defined(W) && (q.endCharacter = W), Is.defined(G) && (q.kind = G), Is.defined(K) && (q.collapsedText = K), q;
|
|
217
|
+
}
|
|
218
|
+
p.create = H;
|
|
219
|
+
function U(p) {
|
|
220
|
+
let H = p;
|
|
221
|
+
return Is.objectLiteral(H) && Is.uinteger(H.startLine) && Is.uinteger(H.startLine) && (Is.undefined(H.startCharacter) || Is.uinteger(H.startCharacter)) && (Is.undefined(H.endCharacter) || Is.uinteger(H.endCharacter)) && (Is.undefined(H.kind) || Is.string(H.kind));
|
|
222
|
+
}
|
|
223
|
+
p.is = U;
|
|
224
|
+
})(FoldingRange ||= {}), (function(p) {
|
|
225
|
+
function H(p, H) {
|
|
226
|
+
return {
|
|
227
|
+
location: p,
|
|
228
|
+
message: H
|
|
229
|
+
};
|
|
230
|
+
}
|
|
231
|
+
p.create = H;
|
|
232
|
+
function U(p) {
|
|
233
|
+
let H = p;
|
|
234
|
+
return Is.defined(H) && Location.is(H.location) && Is.string(H.message);
|
|
235
|
+
}
|
|
236
|
+
p.is = U;
|
|
237
|
+
})(DiagnosticRelatedInformation ||= {}), (function(p) {
|
|
238
|
+
p.Error = 1, p.Warning = 2, p.Information = 3, p.Hint = 4;
|
|
239
|
+
})(DiagnosticSeverity ||= {}), (function(p) {
|
|
240
|
+
p.Unnecessary = 1, p.Deprecated = 2;
|
|
241
|
+
})(DiagnosticTag ||= {}), (function(p) {
|
|
242
|
+
function H(p) {
|
|
243
|
+
let H = p;
|
|
244
|
+
return Is.objectLiteral(H) && Is.string(H.href);
|
|
245
|
+
}
|
|
246
|
+
p.is = H;
|
|
247
|
+
})(CodeDescription ||= {}), (function(p) {
|
|
248
|
+
function H(p, H, U, W, G, K) {
|
|
249
|
+
let q = {
|
|
250
|
+
range: p,
|
|
251
|
+
message: H
|
|
252
|
+
};
|
|
253
|
+
return Is.defined(U) && (q.severity = U), Is.defined(W) && (q.code = W), Is.defined(G) && (q.source = G), Is.defined(K) && (q.relatedInformation = K), q;
|
|
254
|
+
}
|
|
255
|
+
p.create = H;
|
|
256
|
+
function U(p) {
|
|
257
|
+
let H = p;
|
|
258
|
+
return Is.defined(H) && Range.is(H.range) && Is.string(H.message) && (Is.number(H.severity) || Is.undefined(H.severity)) && (Is.integer(H.code) || Is.string(H.code) || Is.undefined(H.code)) && (Is.undefined(H.codeDescription) || Is.string(H.codeDescription?.href)) && (Is.string(H.source) || Is.undefined(H.source)) && (Is.undefined(H.relatedInformation) || Is.typedArray(H.relatedInformation, DiagnosticRelatedInformation.is));
|
|
259
|
+
}
|
|
260
|
+
p.is = U;
|
|
261
|
+
})(Diagnostic ||= {}), (function(p) {
|
|
262
|
+
function H(p, H, ...U) {
|
|
263
|
+
let W = {
|
|
264
|
+
title: p,
|
|
265
|
+
command: H
|
|
266
|
+
};
|
|
267
|
+
return Is.defined(U) && U.length > 0 && (W.arguments = U), W;
|
|
268
|
+
}
|
|
269
|
+
p.create = H;
|
|
270
|
+
function U(p) {
|
|
271
|
+
let H = p;
|
|
272
|
+
return Is.defined(H) && Is.string(H.title) && Is.string(H.command);
|
|
273
|
+
}
|
|
274
|
+
p.is = U;
|
|
275
|
+
})(Command ||= {}), (function(p) {
|
|
276
|
+
function H(p, H) {
|
|
277
|
+
return {
|
|
278
|
+
range: p,
|
|
279
|
+
newText: H
|
|
280
|
+
};
|
|
281
|
+
}
|
|
282
|
+
p.replace = H;
|
|
283
|
+
function U(p, H) {
|
|
284
|
+
return {
|
|
285
|
+
range: {
|
|
286
|
+
start: p,
|
|
287
|
+
end: p
|
|
288
|
+
},
|
|
289
|
+
newText: H
|
|
290
|
+
};
|
|
291
|
+
}
|
|
292
|
+
p.insert = U;
|
|
293
|
+
function W(p) {
|
|
294
|
+
return {
|
|
295
|
+
range: p,
|
|
296
|
+
newText: ""
|
|
297
|
+
};
|
|
298
|
+
}
|
|
299
|
+
p.del = W;
|
|
300
|
+
function G(p) {
|
|
301
|
+
let H = p;
|
|
302
|
+
return Is.objectLiteral(H) && Is.string(H.newText) && Range.is(H.range);
|
|
303
|
+
}
|
|
304
|
+
p.is = G;
|
|
305
|
+
})(TextEdit ||= {}), (function(p) {
|
|
306
|
+
function H(p, H, U) {
|
|
307
|
+
let W = { label: p };
|
|
308
|
+
return H !== void 0 && (W.needsConfirmation = H), U !== void 0 && (W.description = U), W;
|
|
309
|
+
}
|
|
310
|
+
p.create = H;
|
|
311
|
+
function U(p) {
|
|
312
|
+
let H = p;
|
|
313
|
+
return Is.objectLiteral(H) && Is.string(H.label) && (Is.boolean(H.needsConfirmation) || H.needsConfirmation === void 0) && (Is.string(H.description) || H.description === void 0);
|
|
314
|
+
}
|
|
315
|
+
p.is = U;
|
|
316
|
+
})(ChangeAnnotation ||= {}), (function(p) {
|
|
317
|
+
function H(p) {
|
|
318
|
+
let H = p;
|
|
319
|
+
return Is.string(H);
|
|
320
|
+
}
|
|
321
|
+
p.is = H;
|
|
322
|
+
})(ChangeAnnotationIdentifier ||= {}), (function(p) {
|
|
323
|
+
function H(p, H, U) {
|
|
324
|
+
return {
|
|
325
|
+
range: p,
|
|
326
|
+
newText: H,
|
|
327
|
+
annotationId: U
|
|
328
|
+
};
|
|
329
|
+
}
|
|
330
|
+
p.replace = H;
|
|
331
|
+
function U(p, H, U) {
|
|
332
|
+
return {
|
|
333
|
+
range: {
|
|
334
|
+
start: p,
|
|
335
|
+
end: p
|
|
336
|
+
},
|
|
337
|
+
newText: H,
|
|
338
|
+
annotationId: U
|
|
339
|
+
};
|
|
340
|
+
}
|
|
341
|
+
p.insert = U;
|
|
342
|
+
function W(p, H) {
|
|
343
|
+
return {
|
|
344
|
+
range: p,
|
|
345
|
+
newText: "",
|
|
346
|
+
annotationId: H
|
|
347
|
+
};
|
|
348
|
+
}
|
|
349
|
+
p.del = W;
|
|
350
|
+
function G(p) {
|
|
351
|
+
let H = p;
|
|
352
|
+
return TextEdit.is(H) && (ChangeAnnotation.is(H.annotationId) || ChangeAnnotationIdentifier.is(H.annotationId));
|
|
353
|
+
}
|
|
354
|
+
p.is = G;
|
|
355
|
+
})(AnnotatedTextEdit ||= {}), (function(p) {
|
|
356
|
+
function H(p, H) {
|
|
357
|
+
return {
|
|
358
|
+
textDocument: p,
|
|
359
|
+
edits: H
|
|
360
|
+
};
|
|
361
|
+
}
|
|
362
|
+
p.create = H;
|
|
363
|
+
function U(p) {
|
|
364
|
+
let H = p;
|
|
365
|
+
return Is.defined(H) && OptionalVersionedTextDocumentIdentifier.is(H.textDocument) && Array.isArray(H.edits);
|
|
366
|
+
}
|
|
367
|
+
p.is = U;
|
|
368
|
+
})(TextDocumentEdit ||= {}), (function(p) {
|
|
369
|
+
function H(p, H, U) {
|
|
370
|
+
let W = {
|
|
371
|
+
kind: "create",
|
|
372
|
+
uri: p
|
|
373
|
+
};
|
|
374
|
+
return H !== void 0 && (H.overwrite !== void 0 || H.ignoreIfExists !== void 0) && (W.options = H), U !== void 0 && (W.annotationId = U), W;
|
|
375
|
+
}
|
|
376
|
+
p.create = H;
|
|
377
|
+
function U(p) {
|
|
378
|
+
let H = p;
|
|
379
|
+
return H && H.kind === "create" && Is.string(H.uri) && (H.options === void 0 || (H.options.overwrite === void 0 || Is.boolean(H.options.overwrite)) && (H.options.ignoreIfExists === void 0 || Is.boolean(H.options.ignoreIfExists))) && (H.annotationId === void 0 || ChangeAnnotationIdentifier.is(H.annotationId));
|
|
380
|
+
}
|
|
381
|
+
p.is = U;
|
|
382
|
+
})(CreateFile ||= {}), (function(p) {
|
|
383
|
+
function H(p, H, U, W) {
|
|
384
|
+
let G = {
|
|
385
|
+
kind: "rename",
|
|
386
|
+
oldUri: p,
|
|
387
|
+
newUri: H
|
|
388
|
+
};
|
|
389
|
+
return U !== void 0 && (U.overwrite !== void 0 || U.ignoreIfExists !== void 0) && (G.options = U), W !== void 0 && (G.annotationId = W), G;
|
|
390
|
+
}
|
|
391
|
+
p.create = H;
|
|
392
|
+
function U(p) {
|
|
393
|
+
let H = p;
|
|
394
|
+
return H && H.kind === "rename" && Is.string(H.oldUri) && Is.string(H.newUri) && (H.options === void 0 || (H.options.overwrite === void 0 || Is.boolean(H.options.overwrite)) && (H.options.ignoreIfExists === void 0 || Is.boolean(H.options.ignoreIfExists))) && (H.annotationId === void 0 || ChangeAnnotationIdentifier.is(H.annotationId));
|
|
395
|
+
}
|
|
396
|
+
p.is = U;
|
|
397
|
+
})(RenameFile ||= {}), (function(p) {
|
|
398
|
+
function H(p, H, U) {
|
|
399
|
+
let W = {
|
|
400
|
+
kind: "delete",
|
|
401
|
+
uri: p
|
|
402
|
+
};
|
|
403
|
+
return H !== void 0 && (H.recursive !== void 0 || H.ignoreIfNotExists !== void 0) && (W.options = H), U !== void 0 && (W.annotationId = U), W;
|
|
404
|
+
}
|
|
405
|
+
p.create = H;
|
|
406
|
+
function U(p) {
|
|
407
|
+
let H = p;
|
|
408
|
+
return H && H.kind === "delete" && Is.string(H.uri) && (H.options === void 0 || (H.options.recursive === void 0 || Is.boolean(H.options.recursive)) && (H.options.ignoreIfNotExists === void 0 || Is.boolean(H.options.ignoreIfNotExists))) && (H.annotationId === void 0 || ChangeAnnotationIdentifier.is(H.annotationId));
|
|
409
|
+
}
|
|
410
|
+
p.is = U;
|
|
411
|
+
})(DeleteFile ||= {}), (function(p) {
|
|
412
|
+
function H(p) {
|
|
413
|
+
let H = p;
|
|
414
|
+
return H && (H.changes !== void 0 || H.documentChanges !== void 0) && (H.documentChanges === void 0 || H.documentChanges.every((p) => Is.string(p.kind) ? CreateFile.is(p) || RenameFile.is(p) || DeleteFile.is(p) : TextDocumentEdit.is(p)));
|
|
415
|
+
}
|
|
416
|
+
p.is = H;
|
|
417
|
+
})(WorkspaceEdit ||= {}), TextEditChangeImpl = class {
|
|
418
|
+
constructor(p, H) {
|
|
419
|
+
this.edits = p, this.changeAnnotations = H;
|
|
420
|
+
}
|
|
421
|
+
insert(p, H, U) {
|
|
422
|
+
let W, G;
|
|
423
|
+
if (U === void 0 ? W = TextEdit.insert(p, H) : ChangeAnnotationIdentifier.is(U) ? (G = U, W = AnnotatedTextEdit.insert(p, H, U)) : (this.assertChangeAnnotations(this.changeAnnotations), G = this.changeAnnotations.manage(U), W = AnnotatedTextEdit.insert(p, H, G)), this.edits.push(W), G !== void 0) return G;
|
|
424
|
+
}
|
|
425
|
+
replace(p, H, U) {
|
|
426
|
+
let W, G;
|
|
427
|
+
if (U === void 0 ? W = TextEdit.replace(p, H) : ChangeAnnotationIdentifier.is(U) ? (G = U, W = AnnotatedTextEdit.replace(p, H, U)) : (this.assertChangeAnnotations(this.changeAnnotations), G = this.changeAnnotations.manage(U), W = AnnotatedTextEdit.replace(p, H, G)), this.edits.push(W), G !== void 0) return G;
|
|
428
|
+
}
|
|
429
|
+
delete(p, H) {
|
|
430
|
+
let U, W;
|
|
431
|
+
if (H === void 0 ? U = TextEdit.del(p) : ChangeAnnotationIdentifier.is(H) ? (W = H, U = AnnotatedTextEdit.del(p, H)) : (this.assertChangeAnnotations(this.changeAnnotations), W = this.changeAnnotations.manage(H), U = AnnotatedTextEdit.del(p, W)), this.edits.push(U), W !== void 0) return W;
|
|
432
|
+
}
|
|
433
|
+
add(p) {
|
|
434
|
+
this.edits.push(p);
|
|
435
|
+
}
|
|
436
|
+
all() {
|
|
437
|
+
return this.edits;
|
|
438
|
+
}
|
|
439
|
+
clear() {
|
|
440
|
+
this.edits.splice(0, this.edits.length);
|
|
441
|
+
}
|
|
442
|
+
assertChangeAnnotations(p) {
|
|
443
|
+
if (p === void 0) throw Error("Text edit change is not configured to manage change annotations.");
|
|
444
|
+
}
|
|
445
|
+
}, ChangeAnnotations = class {
|
|
446
|
+
constructor(p) {
|
|
447
|
+
this._annotations = p === void 0 ? Object.create(null) : p, this._counter = 0, this._size = 0;
|
|
448
|
+
}
|
|
449
|
+
all() {
|
|
450
|
+
return this._annotations;
|
|
451
|
+
}
|
|
452
|
+
get size() {
|
|
453
|
+
return this._size;
|
|
454
|
+
}
|
|
455
|
+
manage(p, H) {
|
|
456
|
+
let U;
|
|
457
|
+
if (ChangeAnnotationIdentifier.is(p) ? U = p : (U = this.nextId(), H = p), this._annotations[U] !== void 0) throw Error(`Id ${U} is already in use.`);
|
|
458
|
+
if (H === void 0) throw Error(`No annotation provided for id ${U}`);
|
|
459
|
+
return this._annotations[U] = H, this._size++, U;
|
|
460
|
+
}
|
|
461
|
+
nextId() {
|
|
462
|
+
return this._counter++, this._counter.toString();
|
|
463
|
+
}
|
|
464
|
+
}, WorkspaceChange = class {
|
|
465
|
+
constructor(p) {
|
|
466
|
+
this._textEditChanges = Object.create(null), p === void 0 ? this._workspaceEdit = {} : (this._workspaceEdit = p, p.documentChanges ? (this._changeAnnotations = new ChangeAnnotations(p.changeAnnotations), p.changeAnnotations = this._changeAnnotations.all(), p.documentChanges.forEach((p) => {
|
|
467
|
+
if (TextDocumentEdit.is(p)) {
|
|
468
|
+
let H = new TextEditChangeImpl(p.edits, this._changeAnnotations);
|
|
469
|
+
this._textEditChanges[p.textDocument.uri] = H;
|
|
470
|
+
}
|
|
471
|
+
})) : p.changes && Object.keys(p.changes).forEach((H) => {
|
|
472
|
+
let U = new TextEditChangeImpl(p.changes[H]);
|
|
473
|
+
this._textEditChanges[H] = U;
|
|
474
|
+
}));
|
|
475
|
+
}
|
|
476
|
+
get edit() {
|
|
477
|
+
return this.initDocumentChanges(), this._changeAnnotations !== void 0 && (this._changeAnnotations.size === 0 ? this._workspaceEdit.changeAnnotations = void 0 : this._workspaceEdit.changeAnnotations = this._changeAnnotations.all()), this._workspaceEdit;
|
|
478
|
+
}
|
|
479
|
+
getTextEditChange(p) {
|
|
480
|
+
if (OptionalVersionedTextDocumentIdentifier.is(p)) {
|
|
481
|
+
if (this.initDocumentChanges(), this._workspaceEdit.documentChanges === void 0) throw Error("Workspace edit is not configured for document changes.");
|
|
482
|
+
let H = {
|
|
483
|
+
uri: p.uri,
|
|
484
|
+
version: p.version
|
|
485
|
+
}, U = this._textEditChanges[H.uri];
|
|
486
|
+
if (!U) {
|
|
487
|
+
let p = [], W = {
|
|
488
|
+
textDocument: H,
|
|
489
|
+
edits: p
|
|
490
|
+
};
|
|
491
|
+
this._workspaceEdit.documentChanges.push(W), U = new TextEditChangeImpl(p, this._changeAnnotations), this._textEditChanges[H.uri] = U;
|
|
492
|
+
}
|
|
493
|
+
return U;
|
|
494
|
+
} else {
|
|
495
|
+
if (this.initChanges(), this._workspaceEdit.changes === void 0) throw Error("Workspace edit is not configured for normal text edit changes.");
|
|
496
|
+
let H = this._textEditChanges[p];
|
|
497
|
+
if (!H) {
|
|
498
|
+
let U = [];
|
|
499
|
+
this._workspaceEdit.changes[p] = U, H = new TextEditChangeImpl(U), this._textEditChanges[p] = H;
|
|
500
|
+
}
|
|
501
|
+
return H;
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
initDocumentChanges() {
|
|
505
|
+
this._workspaceEdit.documentChanges === void 0 && this._workspaceEdit.changes === void 0 && (this._changeAnnotations = new ChangeAnnotations(), this._workspaceEdit.documentChanges = [], this._workspaceEdit.changeAnnotations = this._changeAnnotations.all());
|
|
506
|
+
}
|
|
507
|
+
initChanges() {
|
|
508
|
+
this._workspaceEdit.documentChanges === void 0 && this._workspaceEdit.changes === void 0 && (this._workspaceEdit.changes = Object.create(null));
|
|
509
|
+
}
|
|
510
|
+
createFile(p, H, U) {
|
|
511
|
+
if (this.initDocumentChanges(), this._workspaceEdit.documentChanges === void 0) throw Error("Workspace edit is not configured for document changes.");
|
|
512
|
+
let W;
|
|
513
|
+
ChangeAnnotation.is(H) || ChangeAnnotationIdentifier.is(H) ? W = H : U = H;
|
|
514
|
+
let G, K;
|
|
515
|
+
if (W === void 0 ? G = CreateFile.create(p, U) : (K = ChangeAnnotationIdentifier.is(W) ? W : this._changeAnnotations.manage(W), G = CreateFile.create(p, U, K)), this._workspaceEdit.documentChanges.push(G), K !== void 0) return K;
|
|
516
|
+
}
|
|
517
|
+
renameFile(p, H, U, W) {
|
|
518
|
+
if (this.initDocumentChanges(), this._workspaceEdit.documentChanges === void 0) throw Error("Workspace edit is not configured for document changes.");
|
|
519
|
+
let G;
|
|
520
|
+
ChangeAnnotation.is(U) || ChangeAnnotationIdentifier.is(U) ? G = U : W = U;
|
|
521
|
+
let K, q;
|
|
522
|
+
if (G === void 0 ? K = RenameFile.create(p, H, W) : (q = ChangeAnnotationIdentifier.is(G) ? G : this._changeAnnotations.manage(G), K = RenameFile.create(p, H, W, q)), this._workspaceEdit.documentChanges.push(K), q !== void 0) return q;
|
|
523
|
+
}
|
|
524
|
+
deleteFile(p, H, U) {
|
|
525
|
+
if (this.initDocumentChanges(), this._workspaceEdit.documentChanges === void 0) throw Error("Workspace edit is not configured for document changes.");
|
|
526
|
+
let W;
|
|
527
|
+
ChangeAnnotation.is(H) || ChangeAnnotationIdentifier.is(H) ? W = H : U = H;
|
|
528
|
+
let G, K;
|
|
529
|
+
if (W === void 0 ? G = DeleteFile.create(p, U) : (K = ChangeAnnotationIdentifier.is(W) ? W : this._changeAnnotations.manage(W), G = DeleteFile.create(p, U, K)), this._workspaceEdit.documentChanges.push(G), K !== void 0) return K;
|
|
530
|
+
}
|
|
531
|
+
}, (function(p) {
|
|
532
|
+
function H(p) {
|
|
533
|
+
return { uri: p };
|
|
534
|
+
}
|
|
535
|
+
p.create = H;
|
|
536
|
+
function U(p) {
|
|
537
|
+
let H = p;
|
|
538
|
+
return Is.defined(H) && Is.string(H.uri);
|
|
539
|
+
}
|
|
540
|
+
p.is = U;
|
|
541
|
+
})(TextDocumentIdentifier ||= {}), (function(p) {
|
|
542
|
+
function H(p, H) {
|
|
543
|
+
return {
|
|
544
|
+
uri: p,
|
|
545
|
+
version: H
|
|
546
|
+
};
|
|
547
|
+
}
|
|
548
|
+
p.create = H;
|
|
549
|
+
function U(p) {
|
|
550
|
+
let H = p;
|
|
551
|
+
return Is.defined(H) && Is.string(H.uri) && Is.integer(H.version);
|
|
552
|
+
}
|
|
553
|
+
p.is = U;
|
|
554
|
+
})(VersionedTextDocumentIdentifier ||= {}), (function(p) {
|
|
555
|
+
function H(p, H) {
|
|
556
|
+
return {
|
|
557
|
+
uri: p,
|
|
558
|
+
version: H
|
|
559
|
+
};
|
|
560
|
+
}
|
|
561
|
+
p.create = H;
|
|
562
|
+
function U(p) {
|
|
563
|
+
let H = p;
|
|
564
|
+
return Is.defined(H) && Is.string(H.uri) && (H.version === null || Is.integer(H.version));
|
|
565
|
+
}
|
|
566
|
+
p.is = U;
|
|
567
|
+
})(OptionalVersionedTextDocumentIdentifier ||= {}), (function(p) {
|
|
568
|
+
function H(p, H, U, W) {
|
|
569
|
+
return {
|
|
570
|
+
uri: p,
|
|
571
|
+
languageId: H,
|
|
572
|
+
version: U,
|
|
573
|
+
text: W
|
|
574
|
+
};
|
|
575
|
+
}
|
|
576
|
+
p.create = H;
|
|
577
|
+
function U(p) {
|
|
578
|
+
let H = p;
|
|
579
|
+
return Is.defined(H) && Is.string(H.uri) && Is.string(H.languageId) && Is.integer(H.version) && Is.string(H.text);
|
|
580
|
+
}
|
|
581
|
+
p.is = U;
|
|
582
|
+
})(TextDocumentItem ||= {}), (function(p) {
|
|
583
|
+
p.PlainText = "plaintext", p.Markdown = "markdown";
|
|
584
|
+
function H(H) {
|
|
585
|
+
let U = H;
|
|
586
|
+
return U === p.PlainText || U === p.Markdown;
|
|
587
|
+
}
|
|
588
|
+
p.is = H;
|
|
589
|
+
})(MarkupKind ||= {}), (function(p) {
|
|
590
|
+
function H(p) {
|
|
591
|
+
let H = p;
|
|
592
|
+
return Is.objectLiteral(p) && MarkupKind.is(H.kind) && Is.string(H.value);
|
|
593
|
+
}
|
|
594
|
+
p.is = H;
|
|
595
|
+
})(MarkupContent ||= {}), (function(p) {
|
|
596
|
+
p.Text = 1, p.Method = 2, p.Function = 3, p.Constructor = 4, p.Field = 5, p.Variable = 6, p.Class = 7, p.Interface = 8, p.Module = 9, p.Property = 10, p.Unit = 11, p.Value = 12, p.Enum = 13, p.Keyword = 14, p.Snippet = 15, p.Color = 16, p.File = 17, p.Reference = 18, p.Folder = 19, p.EnumMember = 20, p.Constant = 21, p.Struct = 22, p.Event = 23, p.Operator = 24, p.TypeParameter = 25;
|
|
597
|
+
})(CompletionItemKind ||= {}), (function(p) {
|
|
598
|
+
p.PlainText = 1, p.Snippet = 2;
|
|
599
|
+
})(InsertTextFormat ||= {}), (function(p) {
|
|
600
|
+
p.Deprecated = 1;
|
|
601
|
+
})(CompletionItemTag ||= {}), (function(p) {
|
|
602
|
+
function H(p, H, U) {
|
|
603
|
+
return {
|
|
604
|
+
newText: p,
|
|
605
|
+
insert: H,
|
|
606
|
+
replace: U
|
|
607
|
+
};
|
|
608
|
+
}
|
|
609
|
+
p.create = H;
|
|
610
|
+
function U(p) {
|
|
611
|
+
let H = p;
|
|
612
|
+
return H && Is.string(H.newText) && Range.is(H.insert) && Range.is(H.replace);
|
|
613
|
+
}
|
|
614
|
+
p.is = U;
|
|
615
|
+
})(InsertReplaceEdit ||= {}), (function(p) {
|
|
616
|
+
p.asIs = 1, p.adjustIndentation = 2;
|
|
617
|
+
})(InsertTextMode ||= {}), (function(p) {
|
|
618
|
+
function H(p) {
|
|
619
|
+
let H = p;
|
|
620
|
+
return H && (Is.string(H.detail) || H.detail === void 0) && (Is.string(H.description) || H.description === void 0);
|
|
621
|
+
}
|
|
622
|
+
p.is = H;
|
|
623
|
+
})(CompletionItemLabelDetails ||= {}), (function(p) {
|
|
624
|
+
function H(p) {
|
|
625
|
+
return { label: p };
|
|
626
|
+
}
|
|
627
|
+
p.create = H;
|
|
628
|
+
})(CompletionItem ||= {}), (function(p) {
|
|
629
|
+
function H(p, H) {
|
|
630
|
+
return {
|
|
631
|
+
items: p || [],
|
|
632
|
+
isIncomplete: !!H
|
|
633
|
+
};
|
|
634
|
+
}
|
|
635
|
+
p.create = H;
|
|
636
|
+
})(CompletionList ||= {}), (function(p) {
|
|
637
|
+
function H(p) {
|
|
638
|
+
return p.replace(/[\\`*_{}[\]()#+\-.!]/g, "\\$&");
|
|
639
|
+
}
|
|
640
|
+
p.fromPlainText = H;
|
|
641
|
+
function U(p) {
|
|
642
|
+
let H = p;
|
|
643
|
+
return Is.string(H) || Is.objectLiteral(H) && Is.string(H.language) && Is.string(H.value);
|
|
644
|
+
}
|
|
645
|
+
p.is = U;
|
|
646
|
+
})(MarkedString ||= {}), (function(p) {
|
|
647
|
+
function H(p) {
|
|
648
|
+
let H = p;
|
|
649
|
+
return !!H && Is.objectLiteral(H) && (MarkupContent.is(H.contents) || MarkedString.is(H.contents) || Is.typedArray(H.contents, MarkedString.is)) && (p.range === void 0 || Range.is(p.range));
|
|
650
|
+
}
|
|
651
|
+
p.is = H;
|
|
652
|
+
})(Hover ||= {}), (function(p) {
|
|
653
|
+
function H(p, H) {
|
|
654
|
+
return H ? {
|
|
655
|
+
label: p,
|
|
656
|
+
documentation: H
|
|
657
|
+
} : { label: p };
|
|
658
|
+
}
|
|
659
|
+
p.create = H;
|
|
660
|
+
})(ParameterInformation ||= {}), (function(p) {
|
|
661
|
+
function H(p, H, ...U) {
|
|
662
|
+
let W = { label: p };
|
|
663
|
+
return Is.defined(H) && (W.documentation = H), Is.defined(U) ? W.parameters = U : W.parameters = [], W;
|
|
664
|
+
}
|
|
665
|
+
p.create = H;
|
|
666
|
+
})(SignatureInformation ||= {}), (function(p) {
|
|
667
|
+
p.Text = 1, p.Read = 2, p.Write = 3;
|
|
668
|
+
})(DocumentHighlightKind ||= {}), (function(p) {
|
|
669
|
+
function H(p, H) {
|
|
670
|
+
let U = { range: p };
|
|
671
|
+
return Is.number(H) && (U.kind = H), U;
|
|
672
|
+
}
|
|
673
|
+
p.create = H;
|
|
674
|
+
})(DocumentHighlight ||= {}), (function(p) {
|
|
675
|
+
p.File = 1, p.Module = 2, p.Namespace = 3, p.Package = 4, p.Class = 5, p.Method = 6, p.Property = 7, p.Field = 8, p.Constructor = 9, p.Enum = 10, p.Interface = 11, p.Function = 12, p.Variable = 13, p.Constant = 14, p.String = 15, p.Number = 16, p.Boolean = 17, p.Array = 18, p.Object = 19, p.Key = 20, p.Null = 21, p.EnumMember = 22, p.Struct = 23, p.Event = 24, p.Operator = 25, p.TypeParameter = 26;
|
|
676
|
+
})(SymbolKind ||= {}), (function(p) {
|
|
677
|
+
p.Deprecated = 1;
|
|
678
|
+
})(SymbolTag ||= {}), (function(p) {
|
|
679
|
+
function H(p, H, U, W, G) {
|
|
680
|
+
let K = {
|
|
681
|
+
name: p,
|
|
682
|
+
kind: H,
|
|
683
|
+
location: {
|
|
684
|
+
uri: W,
|
|
685
|
+
range: U
|
|
686
|
+
}
|
|
687
|
+
};
|
|
688
|
+
return G && (K.containerName = G), K;
|
|
689
|
+
}
|
|
690
|
+
p.create = H;
|
|
691
|
+
})(SymbolInformation ||= {}), (function(p) {
|
|
692
|
+
function H(p, H, U, W) {
|
|
693
|
+
return W === void 0 ? {
|
|
694
|
+
name: p,
|
|
695
|
+
kind: H,
|
|
696
|
+
location: { uri: U }
|
|
697
|
+
} : {
|
|
698
|
+
name: p,
|
|
699
|
+
kind: H,
|
|
700
|
+
location: {
|
|
701
|
+
uri: U,
|
|
702
|
+
range: W
|
|
703
|
+
}
|
|
704
|
+
};
|
|
705
|
+
}
|
|
706
|
+
p.create = H;
|
|
707
|
+
})(WorkspaceSymbol ||= {}), (function(p) {
|
|
708
|
+
function H(p, H, U, W, G, K) {
|
|
709
|
+
let q = {
|
|
710
|
+
name: p,
|
|
711
|
+
detail: H,
|
|
712
|
+
kind: U,
|
|
713
|
+
range: W,
|
|
714
|
+
selectionRange: G
|
|
715
|
+
};
|
|
716
|
+
return K !== void 0 && (q.children = K), q;
|
|
717
|
+
}
|
|
718
|
+
p.create = H;
|
|
719
|
+
function U(p) {
|
|
720
|
+
let H = p;
|
|
721
|
+
return H && Is.string(H.name) && Is.number(H.kind) && Range.is(H.range) && Range.is(H.selectionRange) && (H.detail === void 0 || Is.string(H.detail)) && (H.deprecated === void 0 || Is.boolean(H.deprecated)) && (H.children === void 0 || Array.isArray(H.children)) && (H.tags === void 0 || Array.isArray(H.tags));
|
|
722
|
+
}
|
|
723
|
+
p.is = U;
|
|
724
|
+
})(DocumentSymbol ||= {}), (function(p) {
|
|
725
|
+
p.Empty = "", p.QuickFix = "quickfix", p.Refactor = "refactor", p.RefactorExtract = "refactor.extract", p.RefactorInline = "refactor.inline", p.RefactorRewrite = "refactor.rewrite", p.Source = "source", p.SourceOrganizeImports = "source.organizeImports", p.SourceFixAll = "source.fixAll";
|
|
726
|
+
})(CodeActionKind ||= {}), (function(p) {
|
|
727
|
+
p.Invoked = 1, p.Automatic = 2;
|
|
728
|
+
})(CodeActionTriggerKind ||= {}), (function(p) {
|
|
729
|
+
function H(p, H, U) {
|
|
730
|
+
let W = { diagnostics: p };
|
|
731
|
+
return H != null && (W.only = H), U != null && (W.triggerKind = U), W;
|
|
732
|
+
}
|
|
733
|
+
p.create = H;
|
|
734
|
+
function U(p) {
|
|
735
|
+
let H = p;
|
|
736
|
+
return Is.defined(H) && Is.typedArray(H.diagnostics, Diagnostic.is) && (H.only === void 0 || Is.typedArray(H.only, Is.string)) && (H.triggerKind === void 0 || H.triggerKind === CodeActionTriggerKind.Invoked || H.triggerKind === CodeActionTriggerKind.Automatic);
|
|
737
|
+
}
|
|
738
|
+
p.is = U;
|
|
739
|
+
})(CodeActionContext ||= {}), (function(p) {
|
|
740
|
+
function H(p, H, U) {
|
|
741
|
+
let W = { title: p }, G = !0;
|
|
742
|
+
return typeof H == "string" ? (G = !1, W.kind = H) : Command.is(H) ? W.command = H : W.edit = H, G && U !== void 0 && (W.kind = U), W;
|
|
743
|
+
}
|
|
744
|
+
p.create = H;
|
|
745
|
+
function U(p) {
|
|
746
|
+
let H = p;
|
|
747
|
+
return H && Is.string(H.title) && (H.diagnostics === void 0 || Is.typedArray(H.diagnostics, Diagnostic.is)) && (H.kind === void 0 || Is.string(H.kind)) && (H.edit !== void 0 || H.command !== void 0) && (H.command === void 0 || Command.is(H.command)) && (H.isPreferred === void 0 || Is.boolean(H.isPreferred)) && (H.edit === void 0 || WorkspaceEdit.is(H.edit));
|
|
748
|
+
}
|
|
749
|
+
p.is = U;
|
|
750
|
+
})(CodeAction ||= {}), (function(p) {
|
|
751
|
+
function H(p, H) {
|
|
752
|
+
let U = { range: p };
|
|
753
|
+
return Is.defined(H) && (U.data = H), U;
|
|
754
|
+
}
|
|
755
|
+
p.create = H;
|
|
756
|
+
function U(p) {
|
|
757
|
+
let H = p;
|
|
758
|
+
return Is.defined(H) && Range.is(H.range) && (Is.undefined(H.command) || Command.is(H.command));
|
|
759
|
+
}
|
|
760
|
+
p.is = U;
|
|
761
|
+
})(CodeLens ||= {}), (function(p) {
|
|
762
|
+
function H(p, H) {
|
|
763
|
+
return {
|
|
764
|
+
tabSize: p,
|
|
765
|
+
insertSpaces: H
|
|
766
|
+
};
|
|
767
|
+
}
|
|
768
|
+
p.create = H;
|
|
769
|
+
function U(p) {
|
|
770
|
+
let H = p;
|
|
771
|
+
return Is.defined(H) && Is.uinteger(H.tabSize) && Is.boolean(H.insertSpaces);
|
|
772
|
+
}
|
|
773
|
+
p.is = U;
|
|
774
|
+
})(FormattingOptions ||= {}), (function(p) {
|
|
775
|
+
function H(p, H, U) {
|
|
776
|
+
return {
|
|
777
|
+
range: p,
|
|
778
|
+
target: H,
|
|
779
|
+
data: U
|
|
780
|
+
};
|
|
781
|
+
}
|
|
782
|
+
p.create = H;
|
|
783
|
+
function U(p) {
|
|
784
|
+
let H = p;
|
|
785
|
+
return Is.defined(H) && Range.is(H.range) && (Is.undefined(H.target) || Is.string(H.target));
|
|
786
|
+
}
|
|
787
|
+
p.is = U;
|
|
788
|
+
})(DocumentLink ||= {}), (function(p) {
|
|
789
|
+
function H(p, H) {
|
|
790
|
+
return {
|
|
791
|
+
range: p,
|
|
792
|
+
parent: H
|
|
793
|
+
};
|
|
794
|
+
}
|
|
795
|
+
p.create = H;
|
|
796
|
+
function U(H) {
|
|
797
|
+
let U = H;
|
|
798
|
+
return Is.objectLiteral(U) && Range.is(U.range) && (U.parent === void 0 || p.is(U.parent));
|
|
799
|
+
}
|
|
800
|
+
p.is = U;
|
|
801
|
+
})(SelectionRange ||= {}), (function(p) {
|
|
802
|
+
p.namespace = "namespace", p.type = "type", p.class = "class", p.enum = "enum", p.interface = "interface", p.struct = "struct", p.typeParameter = "typeParameter", p.parameter = "parameter", p.variable = "variable", p.property = "property", p.enumMember = "enumMember", p.event = "event", p.function = "function", p.method = "method", p.macro = "macro", p.keyword = "keyword", p.modifier = "modifier", p.comment = "comment", p.string = "string", p.number = "number", p.regexp = "regexp", p.operator = "operator", p.decorator = "decorator";
|
|
803
|
+
})(SemanticTokenTypes ||= {}), (function(p) {
|
|
804
|
+
p.declaration = "declaration", p.definition = "definition", p.readonly = "readonly", p.static = "static", p.deprecated = "deprecated", p.abstract = "abstract", p.async = "async", p.modification = "modification", p.documentation = "documentation", p.defaultLibrary = "defaultLibrary";
|
|
805
|
+
})(SemanticTokenModifiers ||= {}), (function(p) {
|
|
806
|
+
function H(p) {
|
|
807
|
+
let H = p;
|
|
808
|
+
return Is.objectLiteral(H) && (H.resultId === void 0 || typeof H.resultId == "string") && Array.isArray(H.data) && (H.data.length === 0 || typeof H.data[0] == "number");
|
|
809
|
+
}
|
|
810
|
+
p.is = H;
|
|
811
|
+
})(SemanticTokens ||= {}), (function(p) {
|
|
812
|
+
function H(p, H) {
|
|
813
|
+
return {
|
|
814
|
+
range: p,
|
|
815
|
+
text: H
|
|
816
|
+
};
|
|
817
|
+
}
|
|
818
|
+
p.create = H;
|
|
819
|
+
function U(p) {
|
|
820
|
+
let H = p;
|
|
821
|
+
return H != null && Range.is(H.range) && Is.string(H.text);
|
|
822
|
+
}
|
|
823
|
+
p.is = U;
|
|
824
|
+
})(InlineValueText ||= {}), (function(p) {
|
|
825
|
+
function H(p, H, U) {
|
|
826
|
+
return {
|
|
827
|
+
range: p,
|
|
828
|
+
variableName: H,
|
|
829
|
+
caseSensitiveLookup: U
|
|
830
|
+
};
|
|
831
|
+
}
|
|
832
|
+
p.create = H;
|
|
833
|
+
function U(p) {
|
|
834
|
+
let H = p;
|
|
835
|
+
return H != null && Range.is(H.range) && Is.boolean(H.caseSensitiveLookup) && (Is.string(H.variableName) || H.variableName === void 0);
|
|
836
|
+
}
|
|
837
|
+
p.is = U;
|
|
838
|
+
})(InlineValueVariableLookup ||= {}), (function(p) {
|
|
839
|
+
function H(p, H) {
|
|
840
|
+
return {
|
|
841
|
+
range: p,
|
|
842
|
+
expression: H
|
|
843
|
+
};
|
|
844
|
+
}
|
|
845
|
+
p.create = H;
|
|
846
|
+
function U(p) {
|
|
847
|
+
let H = p;
|
|
848
|
+
return H != null && Range.is(H.range) && (Is.string(H.expression) || H.expression === void 0);
|
|
849
|
+
}
|
|
850
|
+
p.is = U;
|
|
851
|
+
})(InlineValueEvaluatableExpression ||= {}), (function(p) {
|
|
852
|
+
function H(p, H) {
|
|
853
|
+
return {
|
|
854
|
+
frameId: p,
|
|
855
|
+
stoppedLocation: H
|
|
856
|
+
};
|
|
857
|
+
}
|
|
858
|
+
p.create = H;
|
|
859
|
+
function U(p) {
|
|
860
|
+
let H = p;
|
|
861
|
+
return Is.defined(H) && Range.is(p.stoppedLocation);
|
|
862
|
+
}
|
|
863
|
+
p.is = U;
|
|
864
|
+
})(InlineValueContext ||= {}), (function(p) {
|
|
865
|
+
p.Type = 1, p.Parameter = 2;
|
|
866
|
+
function H(p) {
|
|
867
|
+
return p === 1 || p === 2;
|
|
868
|
+
}
|
|
869
|
+
p.is = H;
|
|
870
|
+
})(InlayHintKind ||= {}), (function(p) {
|
|
871
|
+
function H(p) {
|
|
872
|
+
return { value: p };
|
|
873
|
+
}
|
|
874
|
+
p.create = H;
|
|
875
|
+
function U(p) {
|
|
876
|
+
let H = p;
|
|
877
|
+
return Is.objectLiteral(H) && (H.tooltip === void 0 || Is.string(H.tooltip) || MarkupContent.is(H.tooltip)) && (H.location === void 0 || Location.is(H.location)) && (H.command === void 0 || Command.is(H.command));
|
|
878
|
+
}
|
|
879
|
+
p.is = U;
|
|
880
|
+
})(InlayHintLabelPart ||= {}), (function(p) {
|
|
881
|
+
function H(p, H, U) {
|
|
882
|
+
let W = {
|
|
883
|
+
position: p,
|
|
884
|
+
label: H
|
|
885
|
+
};
|
|
886
|
+
return U !== void 0 && (W.kind = U), W;
|
|
887
|
+
}
|
|
888
|
+
p.create = H;
|
|
889
|
+
function U(p) {
|
|
890
|
+
let H = p;
|
|
891
|
+
return Is.objectLiteral(H) && Position.is(H.position) && (Is.string(H.label) || Is.typedArray(H.label, InlayHintLabelPart.is)) && (H.kind === void 0 || InlayHintKind.is(H.kind)) && H.textEdits === void 0 || Is.typedArray(H.textEdits, TextEdit.is) && (H.tooltip === void 0 || Is.string(H.tooltip) || MarkupContent.is(H.tooltip)) && (H.paddingLeft === void 0 || Is.boolean(H.paddingLeft)) && (H.paddingRight === void 0 || Is.boolean(H.paddingRight));
|
|
892
|
+
}
|
|
893
|
+
p.is = U;
|
|
894
|
+
})(InlayHint ||= {}), (function(p) {
|
|
895
|
+
function H(p) {
|
|
896
|
+
return {
|
|
897
|
+
kind: "snippet",
|
|
898
|
+
value: p
|
|
899
|
+
};
|
|
900
|
+
}
|
|
901
|
+
p.createSnippet = H;
|
|
902
|
+
})(StringValue ||= {}), (function(p) {
|
|
903
|
+
function H(p, H, U, W) {
|
|
904
|
+
return {
|
|
905
|
+
insertText: p,
|
|
906
|
+
filterText: H,
|
|
907
|
+
range: U,
|
|
908
|
+
command: W
|
|
909
|
+
};
|
|
910
|
+
}
|
|
911
|
+
p.create = H;
|
|
912
|
+
})(InlineCompletionItem ||= {}), (function(p) {
|
|
913
|
+
function H(p) {
|
|
914
|
+
return { items: p };
|
|
915
|
+
}
|
|
916
|
+
p.create = H;
|
|
917
|
+
})(InlineCompletionList ||= {}), (function(p) {
|
|
918
|
+
p.Invoked = 0, p.Automatic = 1;
|
|
919
|
+
})(InlineCompletionTriggerKind ||= {}), (function(p) {
|
|
920
|
+
function H(p, H) {
|
|
921
|
+
return {
|
|
922
|
+
range: p,
|
|
923
|
+
text: H
|
|
924
|
+
};
|
|
925
|
+
}
|
|
926
|
+
p.create = H;
|
|
927
|
+
})(SelectedCompletionInfo ||= {}), (function(p) {
|
|
928
|
+
function H(p, H) {
|
|
929
|
+
return {
|
|
930
|
+
triggerKind: p,
|
|
931
|
+
selectedCompletionInfo: H
|
|
932
|
+
};
|
|
933
|
+
}
|
|
934
|
+
p.create = H;
|
|
935
|
+
})(InlineCompletionContext ||= {}), (function(p) {
|
|
936
|
+
function H(p) {
|
|
937
|
+
let H = p;
|
|
938
|
+
return Is.objectLiteral(H) && URI.is(H.uri) && Is.string(H.name);
|
|
939
|
+
}
|
|
940
|
+
p.is = H;
|
|
941
|
+
})(WorkspaceFolder ||= {}), EOL = [
|
|
942
|
+
"\n",
|
|
943
|
+
"\r\n",
|
|
944
|
+
"\r"
|
|
945
|
+
], (function(p) {
|
|
946
|
+
function H(p, H, U, W) {
|
|
947
|
+
return new FullTextDocument(p, H, U, W);
|
|
948
|
+
}
|
|
949
|
+
p.create = H;
|
|
950
|
+
function U(p) {
|
|
951
|
+
let H = p;
|
|
952
|
+
return !!(Is.defined(H) && Is.string(H.uri) && (Is.undefined(H.languageId) || Is.string(H.languageId)) && Is.uinteger(H.lineCount) && Is.func(H.getText) && Is.func(H.positionAt) && Is.func(H.offsetAt));
|
|
953
|
+
}
|
|
954
|
+
p.is = U;
|
|
955
|
+
function W(p, H) {
|
|
956
|
+
let U = p.getText(), W = G(H, (p, H) => {
|
|
957
|
+
let U = p.range.start.line - H.range.start.line;
|
|
958
|
+
return U === 0 ? p.range.start.character - H.range.start.character : U;
|
|
959
|
+
}), K = U.length;
|
|
960
|
+
for (let H = W.length - 1; H >= 0; H--) {
|
|
961
|
+
let G = W[H], q = p.offsetAt(G.range.start), J = p.offsetAt(G.range.end);
|
|
962
|
+
if (J <= K) U = U.substring(0, q) + G.newText + U.substring(J, U.length);
|
|
963
|
+
else throw Error("Overlapping edit");
|
|
964
|
+
K = q;
|
|
965
|
+
}
|
|
966
|
+
return U;
|
|
967
|
+
}
|
|
968
|
+
p.applyEdits = W;
|
|
969
|
+
function G(p, H) {
|
|
970
|
+
if (p.length <= 1) return p;
|
|
971
|
+
let U = p.length / 2 | 0, W = p.slice(0, U), K = p.slice(U);
|
|
972
|
+
G(W, H), G(K, H);
|
|
973
|
+
let q = 0, J = 0, Y = 0;
|
|
974
|
+
for (; q < W.length && J < K.length;) H(W[q], K[J]) <= 0 ? p[Y++] = W[q++] : p[Y++] = K[J++];
|
|
975
|
+
for (; q < W.length;) p[Y++] = W[q++];
|
|
976
|
+
for (; J < K.length;) p[Y++] = K[J++];
|
|
977
|
+
return p;
|
|
978
|
+
}
|
|
979
|
+
})(TextDocument ||= {}), FullTextDocument = class {
|
|
980
|
+
constructor(p, H, U, W) {
|
|
981
|
+
this._uri = p, this._languageId = H, this._version = U, this._content = W, this._lineOffsets = void 0;
|
|
982
|
+
}
|
|
983
|
+
get uri() {
|
|
984
|
+
return this._uri;
|
|
985
|
+
}
|
|
986
|
+
get languageId() {
|
|
987
|
+
return this._languageId;
|
|
988
|
+
}
|
|
989
|
+
get version() {
|
|
990
|
+
return this._version;
|
|
991
|
+
}
|
|
992
|
+
getText(p) {
|
|
993
|
+
if (p) {
|
|
994
|
+
let H = this.offsetAt(p.start), U = this.offsetAt(p.end);
|
|
995
|
+
return this._content.substring(H, U);
|
|
996
|
+
}
|
|
997
|
+
return this._content;
|
|
998
|
+
}
|
|
999
|
+
update(p, H) {
|
|
1000
|
+
this._content = p.text, this._version = H, this._lineOffsets = void 0;
|
|
1001
|
+
}
|
|
1002
|
+
getLineOffsets() {
|
|
1003
|
+
if (this._lineOffsets === void 0) {
|
|
1004
|
+
let p = [], H = this._content, U = !0;
|
|
1005
|
+
for (let W = 0; W < H.length; W++) {
|
|
1006
|
+
U &&= (p.push(W), !1);
|
|
1007
|
+
let G = H.charAt(W);
|
|
1008
|
+
U = G === "\r" || G === "\n", G === "\r" && W + 1 < H.length && H.charAt(W + 1) === "\n" && W++;
|
|
1009
|
+
}
|
|
1010
|
+
U && H.length > 0 && p.push(H.length), this._lineOffsets = p;
|
|
1011
|
+
}
|
|
1012
|
+
return this._lineOffsets;
|
|
1013
|
+
}
|
|
1014
|
+
positionAt(p) {
|
|
1015
|
+
p = Math.max(Math.min(p, this._content.length), 0);
|
|
1016
|
+
let H = this.getLineOffsets(), U = 0, W = H.length;
|
|
1017
|
+
if (W === 0) return Position.create(0, p);
|
|
1018
|
+
for (; U < W;) {
|
|
1019
|
+
let G = Math.floor((U + W) / 2);
|
|
1020
|
+
H[G] > p ? W = G : U = G + 1;
|
|
1021
|
+
}
|
|
1022
|
+
let G = U - 1;
|
|
1023
|
+
return Position.create(G, p - H[G]);
|
|
1024
|
+
}
|
|
1025
|
+
offsetAt(p) {
|
|
1026
|
+
let H = this.getLineOffsets();
|
|
1027
|
+
if (p.line >= H.length) return this._content.length;
|
|
1028
|
+
if (p.line < 0) return 0;
|
|
1029
|
+
let U = H[p.line], W = p.line + 1 < H.length ? H[p.line + 1] : this._content.length;
|
|
1030
|
+
return Math.max(Math.min(U + p.character, W), U);
|
|
1031
|
+
}
|
|
1032
|
+
get lineCount() {
|
|
1033
|
+
return this.getLineOffsets().length;
|
|
1034
|
+
}
|
|
1035
|
+
}, (function(p) {
|
|
1036
|
+
let H = Object.prototype.toString;
|
|
1037
|
+
function U(p) {
|
|
1038
|
+
return p !== void 0;
|
|
1039
|
+
}
|
|
1040
|
+
p.defined = U;
|
|
1041
|
+
function W(p) {
|
|
1042
|
+
return p === void 0;
|
|
1043
|
+
}
|
|
1044
|
+
p.undefined = W;
|
|
1045
|
+
function G(p) {
|
|
1046
|
+
return p === !0 || p === !1;
|
|
1047
|
+
}
|
|
1048
|
+
p.boolean = G;
|
|
1049
|
+
function K(p) {
|
|
1050
|
+
return H.call(p) === "[object String]";
|
|
1051
|
+
}
|
|
1052
|
+
p.string = K;
|
|
1053
|
+
function q(p) {
|
|
1054
|
+
return H.call(p) === "[object Number]";
|
|
1055
|
+
}
|
|
1056
|
+
p.number = q;
|
|
1057
|
+
function J(p, U, W) {
|
|
1058
|
+
return H.call(p) === "[object Number]" && U <= p && p <= W;
|
|
1059
|
+
}
|
|
1060
|
+
p.numberRange = J;
|
|
1061
|
+
function Y(p) {
|
|
1062
|
+
return H.call(p) === "[object Number]" && -2147483648 <= p && p <= 2147483647;
|
|
1063
|
+
}
|
|
1064
|
+
p.integer = Y;
|
|
1065
|
+
function X(p) {
|
|
1066
|
+
return H.call(p) === "[object Number]" && 0 <= p && p <= 2147483647;
|
|
1067
|
+
}
|
|
1068
|
+
p.uinteger = X;
|
|
1069
|
+
function Z(p) {
|
|
1070
|
+
return H.call(p) === "[object Function]";
|
|
1071
|
+
}
|
|
1072
|
+
p.func = Z;
|
|
1073
|
+
function Q(p) {
|
|
1074
|
+
return typeof p == "object" && !!p;
|
|
1075
|
+
}
|
|
1076
|
+
p.objectLiteral = Q;
|
|
1077
|
+
function $(p, H) {
|
|
1078
|
+
return Array.isArray(p) && p.every(H);
|
|
1079
|
+
}
|
|
1080
|
+
p.typedArray = $;
|
|
1081
|
+
})(Is ||= {});
|
|
1082
|
+
}));
|
|
1083
|
+
init_main();
|
|
1084
|
+
export { Position, Range, init_main, main_exports };
|