@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,970 @@
|
|
|
1
|
+
import { __name, log } from "./chunk-AGHRB4JF.js";
|
|
2
|
+
import is_dark_default from "../../../../khroma/dist/methods/is_dark.js";
|
|
3
|
+
import lighten_default from "../../../../khroma/dist/methods/lighten.js";
|
|
4
|
+
import darken_default from "../../../../khroma/dist/methods/darken.js";
|
|
5
|
+
import { defaultConfig_default, getConfig2, sanitizeText, setupGraphViewbox } from "./chunk-ABZYJK2D.js";
|
|
6
|
+
import { selectSvgElement } from "./chunk-EXTU4WIE.js";
|
|
7
|
+
import { JSON_SCHEMA, load } from "./chunk-MI3HLSF2.js";
|
|
8
|
+
import "./chunk-CVBHYZKI.js";
|
|
9
|
+
import "./chunk-ATLVNIR6.js";
|
|
10
|
+
import "./chunk-S3R3BYOJ.js";
|
|
11
|
+
import "./chunk-JA3XYJ7Z.js";
|
|
12
|
+
import { insertCluster, insertNode, positionNode } from "./chunk-JZLCHNYA.js";
|
|
13
|
+
import { getIconStyles } from "./chunk-FMBD7UC4.js";
|
|
14
|
+
var parser = (function() {
|
|
15
|
+
var t = /* @__PURE__ */ __name(function(e, t, n, r) {
|
|
16
|
+
for (n ||= {}, r = e.length; r--; n[e[r]] = t);
|
|
17
|
+
return n;
|
|
18
|
+
}, "o"), n = [1, 4], r = [1, 13], i = [1, 12], a = [1, 15], o = [1, 16], s = [1, 20], c = [1, 19], l = [
|
|
19
|
+
6,
|
|
20
|
+
7,
|
|
21
|
+
8
|
|
22
|
+
], u = [1, 26], d = [1, 24], f = [1, 25], p = [
|
|
23
|
+
6,
|
|
24
|
+
7,
|
|
25
|
+
11
|
|
26
|
+
], m = [1, 31], h = [
|
|
27
|
+
6,
|
|
28
|
+
7,
|
|
29
|
+
11,
|
|
30
|
+
24
|
|
31
|
+
], g = [
|
|
32
|
+
1,
|
|
33
|
+
6,
|
|
34
|
+
13,
|
|
35
|
+
16,
|
|
36
|
+
17,
|
|
37
|
+
20,
|
|
38
|
+
23
|
|
39
|
+
], _ = [1, 35], v = [1, 36], y = [
|
|
40
|
+
1,
|
|
41
|
+
6,
|
|
42
|
+
7,
|
|
43
|
+
11,
|
|
44
|
+
13,
|
|
45
|
+
16,
|
|
46
|
+
17,
|
|
47
|
+
20,
|
|
48
|
+
23
|
|
49
|
+
], b = [1, 38], x = {
|
|
50
|
+
trace: /* @__PURE__ */ __name(function() {}, "trace"),
|
|
51
|
+
yy: {},
|
|
52
|
+
symbols_: {
|
|
53
|
+
error: 2,
|
|
54
|
+
start: 3,
|
|
55
|
+
mindMap: 4,
|
|
56
|
+
spaceLines: 5,
|
|
57
|
+
SPACELINE: 6,
|
|
58
|
+
NL: 7,
|
|
59
|
+
KANBAN: 8,
|
|
60
|
+
document: 9,
|
|
61
|
+
stop: 10,
|
|
62
|
+
EOF: 11,
|
|
63
|
+
statement: 12,
|
|
64
|
+
SPACELIST: 13,
|
|
65
|
+
node: 14,
|
|
66
|
+
shapeData: 15,
|
|
67
|
+
ICON: 16,
|
|
68
|
+
CLASS: 17,
|
|
69
|
+
nodeWithId: 18,
|
|
70
|
+
nodeWithoutId: 19,
|
|
71
|
+
NODE_DSTART: 20,
|
|
72
|
+
NODE_DESCR: 21,
|
|
73
|
+
NODE_DEND: 22,
|
|
74
|
+
NODE_ID: 23,
|
|
75
|
+
SHAPE_DATA: 24,
|
|
76
|
+
$accept: 0,
|
|
77
|
+
$end: 1
|
|
78
|
+
},
|
|
79
|
+
terminals_: {
|
|
80
|
+
2: "error",
|
|
81
|
+
6: "SPACELINE",
|
|
82
|
+
7: "NL",
|
|
83
|
+
8: "KANBAN",
|
|
84
|
+
11: "EOF",
|
|
85
|
+
13: "SPACELIST",
|
|
86
|
+
16: "ICON",
|
|
87
|
+
17: "CLASS",
|
|
88
|
+
20: "NODE_DSTART",
|
|
89
|
+
21: "NODE_DESCR",
|
|
90
|
+
22: "NODE_DEND",
|
|
91
|
+
23: "NODE_ID",
|
|
92
|
+
24: "SHAPE_DATA"
|
|
93
|
+
},
|
|
94
|
+
productions_: [
|
|
95
|
+
0,
|
|
96
|
+
[3, 1],
|
|
97
|
+
[3, 2],
|
|
98
|
+
[5, 1],
|
|
99
|
+
[5, 2],
|
|
100
|
+
[5, 2],
|
|
101
|
+
[4, 2],
|
|
102
|
+
[4, 3],
|
|
103
|
+
[10, 1],
|
|
104
|
+
[10, 1],
|
|
105
|
+
[10, 1],
|
|
106
|
+
[10, 2],
|
|
107
|
+
[10, 2],
|
|
108
|
+
[9, 3],
|
|
109
|
+
[9, 2],
|
|
110
|
+
[12, 3],
|
|
111
|
+
[12, 2],
|
|
112
|
+
[12, 2],
|
|
113
|
+
[12, 2],
|
|
114
|
+
[12, 1],
|
|
115
|
+
[12, 2],
|
|
116
|
+
[12, 1],
|
|
117
|
+
[12, 1],
|
|
118
|
+
[12, 1],
|
|
119
|
+
[12, 1],
|
|
120
|
+
[14, 1],
|
|
121
|
+
[14, 1],
|
|
122
|
+
[19, 3],
|
|
123
|
+
[18, 1],
|
|
124
|
+
[18, 4],
|
|
125
|
+
[15, 2],
|
|
126
|
+
[15, 1]
|
|
127
|
+
],
|
|
128
|
+
performAction: /* @__PURE__ */ __name(function(e, t, n, r, i, a, o) {
|
|
129
|
+
var s = a.length - 1;
|
|
130
|
+
switch (i) {
|
|
131
|
+
case 6:
|
|
132
|
+
case 7: return r;
|
|
133
|
+
case 8:
|
|
134
|
+
r.getLogger().trace("Stop NL ");
|
|
135
|
+
break;
|
|
136
|
+
case 9:
|
|
137
|
+
r.getLogger().trace("Stop EOF ");
|
|
138
|
+
break;
|
|
139
|
+
case 11:
|
|
140
|
+
r.getLogger().trace("Stop NL2 ");
|
|
141
|
+
break;
|
|
142
|
+
case 12:
|
|
143
|
+
r.getLogger().trace("Stop EOF2 ");
|
|
144
|
+
break;
|
|
145
|
+
case 15:
|
|
146
|
+
r.getLogger().info("Node: ", a[s - 1].id), r.addNode(a[s - 2].length, a[s - 1].id, a[s - 1].descr, a[s - 1].type, a[s]);
|
|
147
|
+
break;
|
|
148
|
+
case 16:
|
|
149
|
+
r.getLogger().info("Node: ", a[s].id), r.addNode(a[s - 1].length, a[s].id, a[s].descr, a[s].type);
|
|
150
|
+
break;
|
|
151
|
+
case 17:
|
|
152
|
+
r.getLogger().trace("Icon: ", a[s]), r.decorateNode({ icon: a[s] });
|
|
153
|
+
break;
|
|
154
|
+
case 18:
|
|
155
|
+
case 23:
|
|
156
|
+
r.decorateNode({ class: a[s] });
|
|
157
|
+
break;
|
|
158
|
+
case 19:
|
|
159
|
+
r.getLogger().trace("SPACELIST");
|
|
160
|
+
break;
|
|
161
|
+
case 20:
|
|
162
|
+
r.getLogger().trace("Node: ", a[s - 1].id), r.addNode(0, a[s - 1].id, a[s - 1].descr, a[s - 1].type, a[s]);
|
|
163
|
+
break;
|
|
164
|
+
case 21:
|
|
165
|
+
r.getLogger().trace("Node: ", a[s].id), r.addNode(0, a[s].id, a[s].descr, a[s].type);
|
|
166
|
+
break;
|
|
167
|
+
case 22:
|
|
168
|
+
r.decorateNode({ icon: a[s] });
|
|
169
|
+
break;
|
|
170
|
+
case 27:
|
|
171
|
+
r.getLogger().trace("node found ..", a[s - 2]), this.$ = {
|
|
172
|
+
id: a[s - 1],
|
|
173
|
+
descr: a[s - 1],
|
|
174
|
+
type: r.getType(a[s - 2], a[s])
|
|
175
|
+
};
|
|
176
|
+
break;
|
|
177
|
+
case 28:
|
|
178
|
+
this.$ = {
|
|
179
|
+
id: a[s],
|
|
180
|
+
descr: a[s],
|
|
181
|
+
type: 0
|
|
182
|
+
};
|
|
183
|
+
break;
|
|
184
|
+
case 29:
|
|
185
|
+
r.getLogger().trace("node found ..", a[s - 3]), this.$ = {
|
|
186
|
+
id: a[s - 3],
|
|
187
|
+
descr: a[s - 1],
|
|
188
|
+
type: r.getType(a[s - 2], a[s])
|
|
189
|
+
};
|
|
190
|
+
break;
|
|
191
|
+
case 30:
|
|
192
|
+
this.$ = a[s - 1] + a[s];
|
|
193
|
+
break;
|
|
194
|
+
case 31:
|
|
195
|
+
this.$ = a[s];
|
|
196
|
+
break;
|
|
197
|
+
}
|
|
198
|
+
}, "anonymous"),
|
|
199
|
+
table: [
|
|
200
|
+
{
|
|
201
|
+
3: 1,
|
|
202
|
+
4: 2,
|
|
203
|
+
5: 3,
|
|
204
|
+
6: [1, 5],
|
|
205
|
+
8: n
|
|
206
|
+
},
|
|
207
|
+
{ 1: [3] },
|
|
208
|
+
{ 1: [2, 1] },
|
|
209
|
+
{
|
|
210
|
+
4: 6,
|
|
211
|
+
6: [1, 7],
|
|
212
|
+
7: [1, 8],
|
|
213
|
+
8: n
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
6: r,
|
|
217
|
+
7: [1, 10],
|
|
218
|
+
9: 9,
|
|
219
|
+
12: 11,
|
|
220
|
+
13: i,
|
|
221
|
+
14: 14,
|
|
222
|
+
16: a,
|
|
223
|
+
17: o,
|
|
224
|
+
18: 17,
|
|
225
|
+
19: 18,
|
|
226
|
+
20: s,
|
|
227
|
+
23: c
|
|
228
|
+
},
|
|
229
|
+
t(l, [2, 3]),
|
|
230
|
+
{ 1: [2, 2] },
|
|
231
|
+
t(l, [2, 4]),
|
|
232
|
+
t(l, [2, 5]),
|
|
233
|
+
{
|
|
234
|
+
1: [2, 6],
|
|
235
|
+
6: r,
|
|
236
|
+
12: 21,
|
|
237
|
+
13: i,
|
|
238
|
+
14: 14,
|
|
239
|
+
16: a,
|
|
240
|
+
17: o,
|
|
241
|
+
18: 17,
|
|
242
|
+
19: 18,
|
|
243
|
+
20: s,
|
|
244
|
+
23: c
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
6: r,
|
|
248
|
+
9: 22,
|
|
249
|
+
12: 11,
|
|
250
|
+
13: i,
|
|
251
|
+
14: 14,
|
|
252
|
+
16: a,
|
|
253
|
+
17: o,
|
|
254
|
+
18: 17,
|
|
255
|
+
19: 18,
|
|
256
|
+
20: s,
|
|
257
|
+
23: c
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
6: u,
|
|
261
|
+
7: d,
|
|
262
|
+
10: 23,
|
|
263
|
+
11: f
|
|
264
|
+
},
|
|
265
|
+
t(p, [2, 24], {
|
|
266
|
+
18: 17,
|
|
267
|
+
19: 18,
|
|
268
|
+
14: 27,
|
|
269
|
+
16: [1, 28],
|
|
270
|
+
17: [1, 29],
|
|
271
|
+
20: s,
|
|
272
|
+
23: c
|
|
273
|
+
}),
|
|
274
|
+
t(p, [2, 19]),
|
|
275
|
+
t(p, [2, 21], {
|
|
276
|
+
15: 30,
|
|
277
|
+
24: m
|
|
278
|
+
}),
|
|
279
|
+
t(p, [2, 22]),
|
|
280
|
+
t(p, [2, 23]),
|
|
281
|
+
t(h, [2, 25]),
|
|
282
|
+
t(h, [2, 26]),
|
|
283
|
+
t(h, [2, 28], { 20: [1, 32] }),
|
|
284
|
+
{ 21: [1, 33] },
|
|
285
|
+
{
|
|
286
|
+
6: u,
|
|
287
|
+
7: d,
|
|
288
|
+
10: 34,
|
|
289
|
+
11: f
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
1: [2, 7],
|
|
293
|
+
6: r,
|
|
294
|
+
12: 21,
|
|
295
|
+
13: i,
|
|
296
|
+
14: 14,
|
|
297
|
+
16: a,
|
|
298
|
+
17: o,
|
|
299
|
+
18: 17,
|
|
300
|
+
19: 18,
|
|
301
|
+
20: s,
|
|
302
|
+
23: c
|
|
303
|
+
},
|
|
304
|
+
t(g, [2, 14], {
|
|
305
|
+
7: _,
|
|
306
|
+
11: v
|
|
307
|
+
}),
|
|
308
|
+
t(y, [2, 8]),
|
|
309
|
+
t(y, [2, 9]),
|
|
310
|
+
t(y, [2, 10]),
|
|
311
|
+
t(p, [2, 16], {
|
|
312
|
+
15: 37,
|
|
313
|
+
24: m
|
|
314
|
+
}),
|
|
315
|
+
t(p, [2, 17]),
|
|
316
|
+
t(p, [2, 18]),
|
|
317
|
+
t(p, [2, 20], { 24: b }),
|
|
318
|
+
t(h, [2, 31]),
|
|
319
|
+
{ 21: [1, 39] },
|
|
320
|
+
{ 22: [1, 40] },
|
|
321
|
+
t(g, [2, 13], {
|
|
322
|
+
7: _,
|
|
323
|
+
11: v
|
|
324
|
+
}),
|
|
325
|
+
t(y, [2, 11]),
|
|
326
|
+
t(y, [2, 12]),
|
|
327
|
+
t(p, [2, 15], { 24: b }),
|
|
328
|
+
t(h, [2, 30]),
|
|
329
|
+
{ 22: [1, 41] },
|
|
330
|
+
t(h, [2, 27]),
|
|
331
|
+
t(h, [2, 29])
|
|
332
|
+
],
|
|
333
|
+
defaultActions: {
|
|
334
|
+
2: [2, 1],
|
|
335
|
+
6: [2, 2]
|
|
336
|
+
},
|
|
337
|
+
parseError: /* @__PURE__ */ __name(function(e, t) {
|
|
338
|
+
if (t.recoverable) this.trace(e);
|
|
339
|
+
else {
|
|
340
|
+
var n = Error(e);
|
|
341
|
+
throw n.hash = t, n;
|
|
342
|
+
}
|
|
343
|
+
}, "parseError"),
|
|
344
|
+
parse: /* @__PURE__ */ __name(function(t) {
|
|
345
|
+
var n = this, r = [0], i = [], a = [null], o = [], s = this.table, c = "", l = 0, u = 0, d = 0, f = 2, p = 1, m = o.slice.call(arguments, 1), h = Object.create(this.lexer), g = { yy: {} };
|
|
346
|
+
for (var _ in this.yy) Object.prototype.hasOwnProperty.call(this.yy, _) && (g.yy[_] = this.yy[_]);
|
|
347
|
+
h.setInput(t, g.yy), g.yy.lexer = h, g.yy.parser = this, h.yylloc === void 0 && (h.yylloc = {});
|
|
348
|
+
var v = h.yylloc;
|
|
349
|
+
o.push(v);
|
|
350
|
+
var y = h.options && h.options.ranges;
|
|
351
|
+
typeof g.yy.parseError == "function" ? this.parseError = g.yy.parseError : this.parseError = Object.getPrototypeOf(this).parseError;
|
|
352
|
+
function b(e) {
|
|
353
|
+
r.length -= 2 * e, a.length -= e, o.length -= e;
|
|
354
|
+
}
|
|
355
|
+
__name(b, "popStack");
|
|
356
|
+
function x() {
|
|
357
|
+
var e = i.pop() || h.lex() || p;
|
|
358
|
+
return typeof e != "number" && (e instanceof Array && (i = e, e = i.pop()), e = n.symbols_[e] || e), e;
|
|
359
|
+
}
|
|
360
|
+
__name(x, "lex");
|
|
361
|
+
for (var S, C, w, T, E, D = {}, O, k, A, j;;) {
|
|
362
|
+
if (w = r[r.length - 1], this.defaultActions[w] ? T = this.defaultActions[w] : (S ??= x(), T = s[w] && s[w][S]), T === void 0 || !T.length || !T[0]) {
|
|
363
|
+
var M = "";
|
|
364
|
+
for (O in j = [], s[w]) this.terminals_[O] && O > f && j.push("'" + this.terminals_[O] + "'");
|
|
365
|
+
M = h.showPosition ? "Parse error on line " + (l + 1) + ":\n" + h.showPosition() + "\nExpecting " + j.join(", ") + ", got '" + (this.terminals_[S] || S) + "'" : "Parse error on line " + (l + 1) + ": Unexpected " + (S == p ? "end of input" : "'" + (this.terminals_[S] || S) + "'"), this.parseError(M, {
|
|
366
|
+
text: h.match,
|
|
367
|
+
token: this.terminals_[S] || S,
|
|
368
|
+
line: h.yylineno,
|
|
369
|
+
loc: v,
|
|
370
|
+
expected: j
|
|
371
|
+
});
|
|
372
|
+
}
|
|
373
|
+
if (T[0] instanceof Array && T.length > 1) throw Error("Parse Error: multiple actions possible at state: " + w + ", token: " + S);
|
|
374
|
+
switch (T[0]) {
|
|
375
|
+
case 1:
|
|
376
|
+
r.push(S), a.push(h.yytext), o.push(h.yylloc), r.push(T[1]), S = null, C ? (S = C, C = null) : (u = h.yyleng, c = h.yytext, l = h.yylineno, v = h.yylloc, d > 0 && d--);
|
|
377
|
+
break;
|
|
378
|
+
case 2:
|
|
379
|
+
if (k = this.productions_[T[1]][1], D.$ = a[a.length - k], D._$ = {
|
|
380
|
+
first_line: o[o.length - (k || 1)].first_line,
|
|
381
|
+
last_line: o[o.length - 1].last_line,
|
|
382
|
+
first_column: o[o.length - (k || 1)].first_column,
|
|
383
|
+
last_column: o[o.length - 1].last_column
|
|
384
|
+
}, y && (D._$.range = [o[o.length - (k || 1)].range[0], o[o.length - 1].range[1]]), E = this.performAction.apply(D, [
|
|
385
|
+
c,
|
|
386
|
+
u,
|
|
387
|
+
l,
|
|
388
|
+
g.yy,
|
|
389
|
+
T[1],
|
|
390
|
+
a,
|
|
391
|
+
o
|
|
392
|
+
].concat(m)), E !== void 0) return E;
|
|
393
|
+
k && (r = r.slice(0, -1 * k * 2), a = a.slice(0, -1 * k), o = o.slice(0, -1 * k)), r.push(this.productions_[T[1]][0]), a.push(D.$), o.push(D._$), A = s[r[r.length - 2]][r[r.length - 1]], r.push(A);
|
|
394
|
+
break;
|
|
395
|
+
case 3: return !0;
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
return !0;
|
|
399
|
+
}, "parse")
|
|
400
|
+
};
|
|
401
|
+
x.lexer = /* @__PURE__ */ (function() {
|
|
402
|
+
return {
|
|
403
|
+
EOF: 1,
|
|
404
|
+
parseError: /* @__PURE__ */ __name(function(e, t) {
|
|
405
|
+
if (this.yy.parser) this.yy.parser.parseError(e, t);
|
|
406
|
+
else throw Error(e);
|
|
407
|
+
}, "parseError"),
|
|
408
|
+
setInput: /* @__PURE__ */ __name(function(e, t) {
|
|
409
|
+
return this.yy = t || this.yy || {}, this._input = e, this._more = this._backtrack = this.done = !1, this.yylineno = this.yyleng = 0, this.yytext = this.matched = this.match = "", this.conditionStack = ["INITIAL"], this.yylloc = {
|
|
410
|
+
first_line: 1,
|
|
411
|
+
first_column: 0,
|
|
412
|
+
last_line: 1,
|
|
413
|
+
last_column: 0
|
|
414
|
+
}, this.options.ranges && (this.yylloc.range = [0, 0]), this.offset = 0, this;
|
|
415
|
+
}, "setInput"),
|
|
416
|
+
input: /* @__PURE__ */ __name(function() {
|
|
417
|
+
var e = this._input[0];
|
|
418
|
+
return this.yytext += e, this.yyleng++, this.offset++, this.match += e, this.matched += e, e.match(/(?:\r\n?|\n).*/g) ? (this.yylineno++, this.yylloc.last_line++) : this.yylloc.last_column++, this.options.ranges && this.yylloc.range[1]++, this._input = this._input.slice(1), e;
|
|
419
|
+
}, "input"),
|
|
420
|
+
unput: /* @__PURE__ */ __name(function(e) {
|
|
421
|
+
var t = e.length, n = e.split(/(?:\r\n?|\n)/g);
|
|
422
|
+
this._input = e + this._input, this.yytext = this.yytext.substr(0, this.yytext.length - t), this.offset -= t;
|
|
423
|
+
var r = this.match.split(/(?:\r\n?|\n)/g);
|
|
424
|
+
this.match = this.match.substr(0, this.match.length - 1), this.matched = this.matched.substr(0, this.matched.length - 1), n.length - 1 && (this.yylineno -= n.length - 1);
|
|
425
|
+
var i = this.yylloc.range;
|
|
426
|
+
return this.yylloc = {
|
|
427
|
+
first_line: this.yylloc.first_line,
|
|
428
|
+
last_line: this.yylineno + 1,
|
|
429
|
+
first_column: this.yylloc.first_column,
|
|
430
|
+
last_column: n ? (n.length === r.length ? this.yylloc.first_column : 0) + r[r.length - n.length].length - n[0].length : this.yylloc.first_column - t
|
|
431
|
+
}, this.options.ranges && (this.yylloc.range = [i[0], i[0] + this.yyleng - t]), this.yyleng = this.yytext.length, this;
|
|
432
|
+
}, "unput"),
|
|
433
|
+
more: /* @__PURE__ */ __name(function() {
|
|
434
|
+
return this._more = !0, this;
|
|
435
|
+
}, "more"),
|
|
436
|
+
reject: /* @__PURE__ */ __name(function() {
|
|
437
|
+
if (this.options.backtrack_lexer) this._backtrack = !0;
|
|
438
|
+
else return this.parseError("Lexical error on line " + (this.yylineno + 1) + ". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n" + this.showPosition(), {
|
|
439
|
+
text: "",
|
|
440
|
+
token: null,
|
|
441
|
+
line: this.yylineno
|
|
442
|
+
});
|
|
443
|
+
return this;
|
|
444
|
+
}, "reject"),
|
|
445
|
+
less: /* @__PURE__ */ __name(function(e) {
|
|
446
|
+
this.unput(this.match.slice(e));
|
|
447
|
+
}, "less"),
|
|
448
|
+
pastInput: /* @__PURE__ */ __name(function() {
|
|
449
|
+
var e = this.matched.substr(0, this.matched.length - this.match.length);
|
|
450
|
+
return (e.length > 20 ? "..." : "") + e.substr(-20).replace(/\n/g, "");
|
|
451
|
+
}, "pastInput"),
|
|
452
|
+
upcomingInput: /* @__PURE__ */ __name(function() {
|
|
453
|
+
var e = this.match;
|
|
454
|
+
return e.length < 20 && (e += this._input.substr(0, 20 - e.length)), (e.substr(0, 20) + (e.length > 20 ? "..." : "")).replace(/\n/g, "");
|
|
455
|
+
}, "upcomingInput"),
|
|
456
|
+
showPosition: /* @__PURE__ */ __name(function() {
|
|
457
|
+
var e = this.pastInput(), t = Array(e.length + 1).join("-");
|
|
458
|
+
return e + this.upcomingInput() + "\n" + t + "^";
|
|
459
|
+
}, "showPosition"),
|
|
460
|
+
test_match: /* @__PURE__ */ __name(function(e, t) {
|
|
461
|
+
var n, r, i;
|
|
462
|
+
if (this.options.backtrack_lexer && (i = {
|
|
463
|
+
yylineno: this.yylineno,
|
|
464
|
+
yylloc: {
|
|
465
|
+
first_line: this.yylloc.first_line,
|
|
466
|
+
last_line: this.last_line,
|
|
467
|
+
first_column: this.yylloc.first_column,
|
|
468
|
+
last_column: this.yylloc.last_column
|
|
469
|
+
},
|
|
470
|
+
yytext: this.yytext,
|
|
471
|
+
match: this.match,
|
|
472
|
+
matches: this.matches,
|
|
473
|
+
matched: this.matched,
|
|
474
|
+
yyleng: this.yyleng,
|
|
475
|
+
offset: this.offset,
|
|
476
|
+
_more: this._more,
|
|
477
|
+
_input: this._input,
|
|
478
|
+
yy: this.yy,
|
|
479
|
+
conditionStack: this.conditionStack.slice(0),
|
|
480
|
+
done: this.done
|
|
481
|
+
}, this.options.ranges && (i.yylloc.range = this.yylloc.range.slice(0))), r = e[0].match(/(?:\r\n?|\n).*/g), r && (this.yylineno += r.length), this.yylloc = {
|
|
482
|
+
first_line: this.yylloc.last_line,
|
|
483
|
+
last_line: this.yylineno + 1,
|
|
484
|
+
first_column: this.yylloc.last_column,
|
|
485
|
+
last_column: r ? r[r.length - 1].length - r[r.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + e[0].length
|
|
486
|
+
}, this.yytext += e[0], this.match += e[0], this.matches = e, this.yyleng = this.yytext.length, this.options.ranges && (this.yylloc.range = [this.offset, this.offset += this.yyleng]), this._more = !1, this._backtrack = !1, this._input = this._input.slice(e[0].length), this.matched += e[0], n = this.performAction.call(this, this.yy, this, t, this.conditionStack[this.conditionStack.length - 1]), this.done && this._input && (this.done = !1), n) return n;
|
|
487
|
+
if (this._backtrack) {
|
|
488
|
+
for (var a in i) this[a] = i[a];
|
|
489
|
+
return !1;
|
|
490
|
+
}
|
|
491
|
+
return !1;
|
|
492
|
+
}, "test_match"),
|
|
493
|
+
next: /* @__PURE__ */ __name(function() {
|
|
494
|
+
if (this.done) return this.EOF;
|
|
495
|
+
this._input || (this.done = !0);
|
|
496
|
+
var e, t, n, r;
|
|
497
|
+
this._more || (this.yytext = "", this.match = "");
|
|
498
|
+
for (var i = this._currentRules(), a = 0; a < i.length; a++) if (n = this._input.match(this.rules[i[a]]), n && (!t || n[0].length > t[0].length)) {
|
|
499
|
+
if (t = n, r = a, this.options.backtrack_lexer) {
|
|
500
|
+
if (e = this.test_match(n, i[a]), e !== !1) return e;
|
|
501
|
+
if (this._backtrack) {
|
|
502
|
+
t = !1;
|
|
503
|
+
continue;
|
|
504
|
+
} else return !1;
|
|
505
|
+
} else if (!this.options.flex) break;
|
|
506
|
+
}
|
|
507
|
+
return t ? (e = this.test_match(t, i[r]), e === !1 ? !1 : e) : this._input === "" ? this.EOF : this.parseError("Lexical error on line " + (this.yylineno + 1) + ". Unrecognized text.\n" + this.showPosition(), {
|
|
508
|
+
text: "",
|
|
509
|
+
token: null,
|
|
510
|
+
line: this.yylineno
|
|
511
|
+
});
|
|
512
|
+
}, "next"),
|
|
513
|
+
lex: /* @__PURE__ */ __name(function() {
|
|
514
|
+
return this.next() || this.lex();
|
|
515
|
+
}, "lex"),
|
|
516
|
+
begin: /* @__PURE__ */ __name(function(e) {
|
|
517
|
+
this.conditionStack.push(e);
|
|
518
|
+
}, "begin"),
|
|
519
|
+
popState: /* @__PURE__ */ __name(function() {
|
|
520
|
+
return this.conditionStack.length - 1 > 0 ? this.conditionStack.pop() : this.conditionStack[0];
|
|
521
|
+
}, "popState"),
|
|
522
|
+
_currentRules: /* @__PURE__ */ __name(function() {
|
|
523
|
+
return this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1] ? this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules : this.conditions.INITIAL.rules;
|
|
524
|
+
}, "_currentRules"),
|
|
525
|
+
topState: /* @__PURE__ */ __name(function(e) {
|
|
526
|
+
return e = this.conditionStack.length - 1 - Math.abs(e || 0), e >= 0 ? this.conditionStack[e] : "INITIAL";
|
|
527
|
+
}, "topState"),
|
|
528
|
+
pushState: /* @__PURE__ */ __name(function(e) {
|
|
529
|
+
this.begin(e);
|
|
530
|
+
}, "pushState"),
|
|
531
|
+
stateStackSize: /* @__PURE__ */ __name(function() {
|
|
532
|
+
return this.conditionStack.length;
|
|
533
|
+
}, "stateStackSize"),
|
|
534
|
+
options: { "case-insensitive": !0 },
|
|
535
|
+
performAction: /* @__PURE__ */ __name(function(e, t, n, r) {
|
|
536
|
+
switch (n) {
|
|
537
|
+
case 0: return this.pushState("shapeData"), t.yytext = "", 24;
|
|
538
|
+
case 1: return this.pushState("shapeDataStr"), 24;
|
|
539
|
+
case 2: return this.popState(), 24;
|
|
540
|
+
case 3: return t.yytext = t.yytext.replace(/\n\s*/g, "<br/>"), 24;
|
|
541
|
+
case 4: return 24;
|
|
542
|
+
case 5:
|
|
543
|
+
this.popState();
|
|
544
|
+
break;
|
|
545
|
+
case 6: return e.getLogger().trace("Found comment", t.yytext), 6;
|
|
546
|
+
case 7: return 8;
|
|
547
|
+
case 8:
|
|
548
|
+
this.begin("CLASS");
|
|
549
|
+
break;
|
|
550
|
+
case 9: return this.popState(), 17;
|
|
551
|
+
case 10:
|
|
552
|
+
this.popState();
|
|
553
|
+
break;
|
|
554
|
+
case 11:
|
|
555
|
+
e.getLogger().trace("Begin icon"), this.begin("ICON");
|
|
556
|
+
break;
|
|
557
|
+
case 12: return e.getLogger().trace("SPACELINE"), 6;
|
|
558
|
+
case 13: return 7;
|
|
559
|
+
case 14: return 16;
|
|
560
|
+
case 15:
|
|
561
|
+
e.getLogger().trace("end icon"), this.popState();
|
|
562
|
+
break;
|
|
563
|
+
case 16: return e.getLogger().trace("Exploding node"), this.begin("NODE"), 20;
|
|
564
|
+
case 17: return e.getLogger().trace("Cloud"), this.begin("NODE"), 20;
|
|
565
|
+
case 18: return e.getLogger().trace("Explosion Bang"), this.begin("NODE"), 20;
|
|
566
|
+
case 19: return e.getLogger().trace("Cloud Bang"), this.begin("NODE"), 20;
|
|
567
|
+
case 20: return this.begin("NODE"), 20;
|
|
568
|
+
case 21: return this.begin("NODE"), 20;
|
|
569
|
+
case 22: return this.begin("NODE"), 20;
|
|
570
|
+
case 23: return this.begin("NODE"), 20;
|
|
571
|
+
case 24: return 13;
|
|
572
|
+
case 25: return 23;
|
|
573
|
+
case 26: return 11;
|
|
574
|
+
case 27:
|
|
575
|
+
this.begin("NSTR2");
|
|
576
|
+
break;
|
|
577
|
+
case 28: return "NODE_DESCR";
|
|
578
|
+
case 29:
|
|
579
|
+
this.popState();
|
|
580
|
+
break;
|
|
581
|
+
case 30:
|
|
582
|
+
e.getLogger().trace("Starting NSTR"), this.begin("NSTR");
|
|
583
|
+
break;
|
|
584
|
+
case 31: return e.getLogger().trace("description:", t.yytext), "NODE_DESCR";
|
|
585
|
+
case 32:
|
|
586
|
+
this.popState();
|
|
587
|
+
break;
|
|
588
|
+
case 33: return this.popState(), e.getLogger().trace("node end ))"), "NODE_DEND";
|
|
589
|
+
case 34: return this.popState(), e.getLogger().trace("node end )"), "NODE_DEND";
|
|
590
|
+
case 35: return this.popState(), e.getLogger().trace("node end ...", t.yytext), "NODE_DEND";
|
|
591
|
+
case 36: return this.popState(), e.getLogger().trace("node end (("), "NODE_DEND";
|
|
592
|
+
case 37: return this.popState(), e.getLogger().trace("node end (-"), "NODE_DEND";
|
|
593
|
+
case 38: return this.popState(), e.getLogger().trace("node end (-"), "NODE_DEND";
|
|
594
|
+
case 39: return this.popState(), e.getLogger().trace("node end (("), "NODE_DEND";
|
|
595
|
+
case 40: return this.popState(), e.getLogger().trace("node end (("), "NODE_DEND";
|
|
596
|
+
case 41: return e.getLogger().trace("Long description:", t.yytext), 21;
|
|
597
|
+
case 42: return e.getLogger().trace("Long description:", t.yytext), 21;
|
|
598
|
+
}
|
|
599
|
+
}, "anonymous"),
|
|
600
|
+
rules: [
|
|
601
|
+
/^(?:@\{)/i,
|
|
602
|
+
/^(?:["])/i,
|
|
603
|
+
/^(?:["])/i,
|
|
604
|
+
/^(?:[^\"]+)/i,
|
|
605
|
+
/^(?:[^}^"]+)/i,
|
|
606
|
+
/^(?:\})/i,
|
|
607
|
+
/^(?:\s*%%.*)/i,
|
|
608
|
+
/^(?:kanban\b)/i,
|
|
609
|
+
/^(?::::)/i,
|
|
610
|
+
/^(?:.+)/i,
|
|
611
|
+
/^(?:\n)/i,
|
|
612
|
+
/^(?:::icon\()/i,
|
|
613
|
+
/^(?:[\s]+[\n])/i,
|
|
614
|
+
/^(?:[\n]+)/i,
|
|
615
|
+
/^(?:[^\)]+)/i,
|
|
616
|
+
/^(?:\))/i,
|
|
617
|
+
/^(?:-\))/i,
|
|
618
|
+
/^(?:\(-)/i,
|
|
619
|
+
/^(?:\)\))/i,
|
|
620
|
+
/^(?:\))/i,
|
|
621
|
+
/^(?:\(\()/i,
|
|
622
|
+
/^(?:\{\{)/i,
|
|
623
|
+
/^(?:\()/i,
|
|
624
|
+
/^(?:\[)/i,
|
|
625
|
+
/^(?:[\s]+)/i,
|
|
626
|
+
/^(?:[^\(\[\n\)\{\}@]+)/i,
|
|
627
|
+
/^(?:$)/i,
|
|
628
|
+
/^(?:["][`])/i,
|
|
629
|
+
/^(?:[^`"]+)/i,
|
|
630
|
+
/^(?:[`]["])/i,
|
|
631
|
+
/^(?:["])/i,
|
|
632
|
+
/^(?:[^"]+)/i,
|
|
633
|
+
/^(?:["])/i,
|
|
634
|
+
/^(?:[\)]\))/i,
|
|
635
|
+
/^(?:[\)])/i,
|
|
636
|
+
/^(?:[\]])/i,
|
|
637
|
+
/^(?:\}\})/i,
|
|
638
|
+
/^(?:\(-)/i,
|
|
639
|
+
/^(?:-\))/i,
|
|
640
|
+
/^(?:\(\()/i,
|
|
641
|
+
/^(?:\()/i,
|
|
642
|
+
/^(?:[^\)\]\(\}]+)/i,
|
|
643
|
+
/^(?:.+(?!\(\())/i
|
|
644
|
+
],
|
|
645
|
+
conditions: {
|
|
646
|
+
shapeDataEndBracket: {
|
|
647
|
+
rules: [],
|
|
648
|
+
inclusive: !1
|
|
649
|
+
},
|
|
650
|
+
shapeDataStr: {
|
|
651
|
+
rules: [2, 3],
|
|
652
|
+
inclusive: !1
|
|
653
|
+
},
|
|
654
|
+
shapeData: {
|
|
655
|
+
rules: [
|
|
656
|
+
1,
|
|
657
|
+
4,
|
|
658
|
+
5
|
|
659
|
+
],
|
|
660
|
+
inclusive: !1
|
|
661
|
+
},
|
|
662
|
+
CLASS: {
|
|
663
|
+
rules: [9, 10],
|
|
664
|
+
inclusive: !1
|
|
665
|
+
},
|
|
666
|
+
ICON: {
|
|
667
|
+
rules: [14, 15],
|
|
668
|
+
inclusive: !1
|
|
669
|
+
},
|
|
670
|
+
NSTR2: {
|
|
671
|
+
rules: [28, 29],
|
|
672
|
+
inclusive: !1
|
|
673
|
+
},
|
|
674
|
+
NSTR: {
|
|
675
|
+
rules: [31, 32],
|
|
676
|
+
inclusive: !1
|
|
677
|
+
},
|
|
678
|
+
NODE: {
|
|
679
|
+
rules: [
|
|
680
|
+
27,
|
|
681
|
+
30,
|
|
682
|
+
33,
|
|
683
|
+
34,
|
|
684
|
+
35,
|
|
685
|
+
36,
|
|
686
|
+
37,
|
|
687
|
+
38,
|
|
688
|
+
39,
|
|
689
|
+
40,
|
|
690
|
+
41,
|
|
691
|
+
42
|
|
692
|
+
],
|
|
693
|
+
inclusive: !1
|
|
694
|
+
},
|
|
695
|
+
INITIAL: {
|
|
696
|
+
rules: [
|
|
697
|
+
0,
|
|
698
|
+
6,
|
|
699
|
+
7,
|
|
700
|
+
8,
|
|
701
|
+
11,
|
|
702
|
+
12,
|
|
703
|
+
13,
|
|
704
|
+
16,
|
|
705
|
+
17,
|
|
706
|
+
18,
|
|
707
|
+
19,
|
|
708
|
+
20,
|
|
709
|
+
21,
|
|
710
|
+
22,
|
|
711
|
+
23,
|
|
712
|
+
24,
|
|
713
|
+
25,
|
|
714
|
+
26
|
|
715
|
+
],
|
|
716
|
+
inclusive: !0
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
};
|
|
720
|
+
})();
|
|
721
|
+
function S() {
|
|
722
|
+
this.yy = {};
|
|
723
|
+
}
|
|
724
|
+
return __name(S, "Parser"), S.prototype = x, x.Parser = S, new S();
|
|
725
|
+
})();
|
|
726
|
+
parser.parser = parser;
|
|
727
|
+
var kanban_default = parser, nodes = [], sections = [], cnt = 0, elements = {}, clear = /* @__PURE__ */ __name(() => {
|
|
728
|
+
nodes = [], sections = [], cnt = 0, elements = {};
|
|
729
|
+
}, "clear"), getSection = /* @__PURE__ */ __name((e) => {
|
|
730
|
+
if (nodes.length === 0) return null;
|
|
731
|
+
let t = nodes[0].level, n = null;
|
|
732
|
+
for (let e = nodes.length - 1; e >= 0; e--) if (nodes[e].level === t && !n && (n = nodes[e]), nodes[e].level < t) throw Error("Items without section detected, found section (\"" + nodes[e].label + "\")");
|
|
733
|
+
return e === n?.level ? null : n;
|
|
734
|
+
}, "getSection"), getSections = /* @__PURE__ */ __name(function() {
|
|
735
|
+
return sections;
|
|
736
|
+
}, "getSections"), getData = /* @__PURE__ */ __name(function() {
|
|
737
|
+
let e = [], t = [], n = getSections(), r = getConfig2();
|
|
738
|
+
for (let e of n) {
|
|
739
|
+
let n = {
|
|
740
|
+
id: e.id,
|
|
741
|
+
label: sanitizeText(e.label ?? "", r),
|
|
742
|
+
isGroup: !0,
|
|
743
|
+
ticket: e.ticket,
|
|
744
|
+
shape: "kanbanSection",
|
|
745
|
+
level: e.level,
|
|
746
|
+
look: r.look
|
|
747
|
+
};
|
|
748
|
+
t.push(n);
|
|
749
|
+
let i = nodes.filter((t) => t.parentId === e.id);
|
|
750
|
+
for (let n of i) {
|
|
751
|
+
let i = {
|
|
752
|
+
id: n.id,
|
|
753
|
+
parentId: e.id,
|
|
754
|
+
label: sanitizeText(n.label ?? "", r),
|
|
755
|
+
isGroup: !1,
|
|
756
|
+
ticket: n?.ticket,
|
|
757
|
+
priority: n?.priority,
|
|
758
|
+
assigned: n?.assigned,
|
|
759
|
+
icon: n?.icon,
|
|
760
|
+
shape: "kanbanItem",
|
|
761
|
+
level: n.level,
|
|
762
|
+
rx: 5,
|
|
763
|
+
ry: 5,
|
|
764
|
+
cssStyles: ["text-align: left"]
|
|
765
|
+
};
|
|
766
|
+
t.push(i);
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
return {
|
|
770
|
+
nodes: t,
|
|
771
|
+
edges: e,
|
|
772
|
+
other: {},
|
|
773
|
+
config: getConfig2()
|
|
774
|
+
};
|
|
775
|
+
}, "getData"), addNode = /* @__PURE__ */ __name((e, t, n, r, i) => {
|
|
776
|
+
let c = getConfig2(), l = c.mindmap?.padding ?? defaultConfig_default.mindmap.padding;
|
|
777
|
+
switch (r) {
|
|
778
|
+
case nodeType.ROUNDED_RECT:
|
|
779
|
+
case nodeType.RECT:
|
|
780
|
+
case nodeType.HEXAGON: l *= 2;
|
|
781
|
+
}
|
|
782
|
+
let f = {
|
|
783
|
+
id: sanitizeText(t, c) || "kbn" + cnt++,
|
|
784
|
+
level: e,
|
|
785
|
+
label: sanitizeText(n, c),
|
|
786
|
+
width: c.mindmap?.maxNodeWidth ?? defaultConfig_default.mindmap.maxNodeWidth,
|
|
787
|
+
padding: l,
|
|
788
|
+
isGroup: !1
|
|
789
|
+
};
|
|
790
|
+
if (i !== void 0) {
|
|
791
|
+
let e;
|
|
792
|
+
e = i.includes("\n") ? i + "\n" : "{\n" + i + "\n}";
|
|
793
|
+
let t = load(e, { schema: JSON_SCHEMA });
|
|
794
|
+
if (t.shape && (t.shape !== t.shape.toLowerCase() || t.shape.includes("_"))) throw Error(`No such shape: ${t.shape}. Shape names should be lowercase.`);
|
|
795
|
+
t?.shape && t.shape === "kanbanItem" && (f.shape = t?.shape), t?.label && (f.label = t?.label), t?.icon && (f.icon = t?.icon.toString()), t?.assigned && (f.assigned = t?.assigned.toString()), t?.ticket && (f.ticket = t?.ticket.toString()), t?.priority && (f.priority = t?.priority);
|
|
796
|
+
}
|
|
797
|
+
let p = getSection(e);
|
|
798
|
+
p ? f.parentId = p.id || "kbn" + cnt++ : sections.push(f), nodes.push(f);
|
|
799
|
+
}, "addNode"), nodeType = {
|
|
800
|
+
DEFAULT: 0,
|
|
801
|
+
NO_BORDER: 0,
|
|
802
|
+
ROUNDED_RECT: 1,
|
|
803
|
+
RECT: 2,
|
|
804
|
+
CIRCLE: 3,
|
|
805
|
+
CLOUD: 4,
|
|
806
|
+
BANG: 5,
|
|
807
|
+
HEXAGON: 6
|
|
808
|
+
}, kanbanDb_default = {
|
|
809
|
+
clear,
|
|
810
|
+
addNode,
|
|
811
|
+
getSections,
|
|
812
|
+
getData,
|
|
813
|
+
nodeType,
|
|
814
|
+
getType: /* @__PURE__ */ __name((e, n) => {
|
|
815
|
+
switch (log.debug("In get type", e, n), e) {
|
|
816
|
+
case "[": return nodeType.RECT;
|
|
817
|
+
case "(": return n === ")" ? nodeType.ROUNDED_RECT : nodeType.CLOUD;
|
|
818
|
+
case "((": return nodeType.CIRCLE;
|
|
819
|
+
case ")": return nodeType.CLOUD;
|
|
820
|
+
case "))": return nodeType.BANG;
|
|
821
|
+
case "{{": return nodeType.HEXAGON;
|
|
822
|
+
default: return nodeType.DEFAULT;
|
|
823
|
+
}
|
|
824
|
+
}, "getType"),
|
|
825
|
+
setElementForId: /* @__PURE__ */ __name((e, t) => {
|
|
826
|
+
elements[e] = t;
|
|
827
|
+
}, "setElementForId"),
|
|
828
|
+
decorateNode: /* @__PURE__ */ __name((e) => {
|
|
829
|
+
if (!e) return;
|
|
830
|
+
let t = getConfig2(), n = nodes[nodes.length - 1];
|
|
831
|
+
e.icon && (n.icon = sanitizeText(e.icon, t)), e.class && (n.cssClasses = sanitizeText(e.class, t));
|
|
832
|
+
}, "decorateNode"),
|
|
833
|
+
type2Str: /* @__PURE__ */ __name((e) => {
|
|
834
|
+
switch (e) {
|
|
835
|
+
case nodeType.DEFAULT: return "no-border";
|
|
836
|
+
case nodeType.RECT: return "rect";
|
|
837
|
+
case nodeType.ROUNDED_RECT: return "rounded-rect";
|
|
838
|
+
case nodeType.CIRCLE: return "circle";
|
|
839
|
+
case nodeType.CLOUD: return "cloud";
|
|
840
|
+
case nodeType.BANG: return "bang";
|
|
841
|
+
case nodeType.HEXAGON: return "hexgon";
|
|
842
|
+
default: return "no-border";
|
|
843
|
+
}
|
|
844
|
+
}, "type2Str"),
|
|
845
|
+
getLogger: /* @__PURE__ */ __name(() => log, "getLogger"),
|
|
846
|
+
getElementById: /* @__PURE__ */ __name((e) => elements[e], "getElementById")
|
|
847
|
+
}, kanbanRenderer_default = { draw: /* @__PURE__ */ __name(async (e, n, r, i) => {
|
|
848
|
+
log.debug("Rendering kanban diagram\n" + e);
|
|
849
|
+
let s = i.db.getData(), u = getConfig2();
|
|
850
|
+
u.htmlLabels = !1;
|
|
851
|
+
let d = selectSvgElement(n), h = d.append("g");
|
|
852
|
+
h.attr("class", "sections");
|
|
853
|
+
let g = d.append("g");
|
|
854
|
+
g.attr("class", "items");
|
|
855
|
+
let _ = s.nodes.filter((e) => e.isGroup), v = 0, y = [], b = 25;
|
|
856
|
+
for (let e of _) {
|
|
857
|
+
let t = u?.kanban?.sectionWidth || 200;
|
|
858
|
+
v += 1, e.x = t * v + (v - 1) * 10 / 2, e.width = t, e.y = 0, e.height = t * 3, e.rx = 5, e.ry = 5, e.cssClasses = e.cssClasses + " section-" + v;
|
|
859
|
+
let n = await insertCluster(h, e);
|
|
860
|
+
b = Math.max(b, n?.labelBBox?.height), y.push(n);
|
|
861
|
+
}
|
|
862
|
+
let x = 0;
|
|
863
|
+
for (let e of _) {
|
|
864
|
+
let t = y[x];
|
|
865
|
+
x += 1;
|
|
866
|
+
let n = u?.kanban?.sectionWidth || 200, r = -n * 3 / 2 + b, i = r, a = s.nodes.filter((t) => t.parentId === e.id);
|
|
867
|
+
for (let t of a) {
|
|
868
|
+
if (t.isGroup) throw Error("Groups within groups are not allowed in Kanban diagrams");
|
|
869
|
+
t.x = e.x, t.width = n - 1.5 * 10;
|
|
870
|
+
let r = (await insertNode(g, t, { config: u })).node().getBBox();
|
|
871
|
+
t.y = i + r.height / 2, await positionNode(t), i = t.y + r.height / 2 + 10 / 2;
|
|
872
|
+
}
|
|
873
|
+
let o = t.cluster.select("rect"), c = Math.max(i - r + 30, 50) + (b - 25);
|
|
874
|
+
o.attr("height", c);
|
|
875
|
+
}
|
|
876
|
+
setupGraphViewbox(void 0, d, u.mindmap?.padding ?? defaultConfig_default.kanban.padding, u.mindmap?.useMaxWidth ?? defaultConfig_default.kanban.useMaxWidth);
|
|
877
|
+
}, "draw") }, genSections = /* @__PURE__ */ __name((t) => {
|
|
878
|
+
let a = "";
|
|
879
|
+
for (let e = 0; e < t.THEME_COLOR_LIMIT; e++) t["lineColor" + e] = t["lineColor" + e] || t["cScaleInv" + e], is_dark_default(t["lineColor" + e]) ? t["lineColor" + e] = lighten_default(t["lineColor" + e], 20) : t["lineColor" + e] = darken_default(t["lineColor" + e], 20);
|
|
880
|
+
let o = /* @__PURE__ */ __name((e, n) => t.darkMode ? darken_default(e, n) : lighten_default(e, n), "adjuster");
|
|
881
|
+
for (let e = 0; e < t.THEME_COLOR_LIMIT; e++) {
|
|
882
|
+
let n = "" + (17 - 3 * e);
|
|
883
|
+
a += `
|
|
884
|
+
.section-${e - 1} rect, .section-${e - 1} path, .section-${e - 1} circle, .section-${e - 1} polygon, .section-${e - 1} path {
|
|
885
|
+
fill: ${o(t["cScale" + e], 10)};
|
|
886
|
+
stroke: ${o(t["cScale" + e], 10)};
|
|
887
|
+
|
|
888
|
+
}
|
|
889
|
+
.section-${e - 1} text {
|
|
890
|
+
fill: ${t["cScaleLabel" + e]};
|
|
891
|
+
}
|
|
892
|
+
.node-icon-${e - 1} {
|
|
893
|
+
font-size: 40px;
|
|
894
|
+
color: ${t["cScaleLabel" + e]};
|
|
895
|
+
}
|
|
896
|
+
.section-edge-${e - 1}{
|
|
897
|
+
stroke: ${t["cScale" + e]};
|
|
898
|
+
}
|
|
899
|
+
.edge-depth-${e - 1}{
|
|
900
|
+
stroke-width: ${n};
|
|
901
|
+
}
|
|
902
|
+
.section-${e - 1} line {
|
|
903
|
+
stroke: ${t["cScaleInv" + e]} ;
|
|
904
|
+
stroke-width: 3;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.disabled, .disabled circle, .disabled text {
|
|
908
|
+
fill: lightgray;
|
|
909
|
+
}
|
|
910
|
+
.disabled text {
|
|
911
|
+
fill: #efefef;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.node rect,
|
|
915
|
+
.node circle,
|
|
916
|
+
.node ellipse,
|
|
917
|
+
.node polygon,
|
|
918
|
+
.node path {
|
|
919
|
+
fill: ${t.background};
|
|
920
|
+
stroke: ${t.nodeBorder};
|
|
921
|
+
stroke-width: 1px;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.kanban-ticket-link {
|
|
925
|
+
fill: ${t.background};
|
|
926
|
+
stroke: ${t.nodeBorder};
|
|
927
|
+
text-decoration: underline;
|
|
928
|
+
}
|
|
929
|
+
`;
|
|
930
|
+
}
|
|
931
|
+
return a;
|
|
932
|
+
}, "genSections"), diagram = {
|
|
933
|
+
db: kanbanDb_default,
|
|
934
|
+
renderer: kanbanRenderer_default,
|
|
935
|
+
parser: kanban_default,
|
|
936
|
+
styles: /* @__PURE__ */ __name((e) => `
|
|
937
|
+
.edge {
|
|
938
|
+
stroke-width: 3;
|
|
939
|
+
}
|
|
940
|
+
${genSections(e)}
|
|
941
|
+
.section-root rect, .section-root path, .section-root circle, .section-root polygon {
|
|
942
|
+
fill: ${e.git0};
|
|
943
|
+
}
|
|
944
|
+
.section-root text {
|
|
945
|
+
fill: ${e.gitBranchLabel0};
|
|
946
|
+
}
|
|
947
|
+
.icon-container {
|
|
948
|
+
height:100%;
|
|
949
|
+
display: flex;
|
|
950
|
+
justify-content: center;
|
|
951
|
+
align-items: center;
|
|
952
|
+
}
|
|
953
|
+
.edge {
|
|
954
|
+
fill: none;
|
|
955
|
+
}
|
|
956
|
+
.cluster-label, .label {
|
|
957
|
+
color: ${e.textColor};
|
|
958
|
+
fill: ${e.textColor};
|
|
959
|
+
}
|
|
960
|
+
.kanban-label {
|
|
961
|
+
dy: 1em;
|
|
962
|
+
alignment-baseline: middle;
|
|
963
|
+
text-anchor: middle;
|
|
964
|
+
dominant-baseline: middle;
|
|
965
|
+
text-align: center;
|
|
966
|
+
}
|
|
967
|
+
${getIconStyles()}
|
|
968
|
+
`, "getStyles")
|
|
969
|
+
};
|
|
970
|
+
export { diagram };
|