@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,16 @@
|
|
|
1
|
+
import { get, init } from "./schedule.js";
|
|
2
|
+
function delayFunction(e, r) {
|
|
3
|
+
return function() {
|
|
4
|
+
init(this, e).delay = +r.apply(this, arguments);
|
|
5
|
+
};
|
|
6
|
+
}
|
|
7
|
+
function delayConstant(e, r) {
|
|
8
|
+
return r = +r, function() {
|
|
9
|
+
init(this, e).delay = r;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
function delay_default(n) {
|
|
13
|
+
var i = this._id;
|
|
14
|
+
return arguments.length ? this.each((typeof n == "function" ? delayFunction : delayConstant)(i, n)) : get(this.node(), i).delay;
|
|
15
|
+
}
|
|
16
|
+
export { delay_default as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { get, set } from "./schedule.js";
|
|
2
|
+
function durationFunction(e, r) {
|
|
3
|
+
return function() {
|
|
4
|
+
set(this, e).duration = +r.apply(this, arguments);
|
|
5
|
+
};
|
|
6
|
+
}
|
|
7
|
+
function durationConstant(e, r) {
|
|
8
|
+
return r = +r, function() {
|
|
9
|
+
set(this, e).duration = r;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
function duration_default(n) {
|
|
13
|
+
var i = this._id;
|
|
14
|
+
return arguments.length ? this.each((typeof n == "function" ? durationFunction : durationConstant)(i, n)) : get(this.node(), i).duration;
|
|
15
|
+
}
|
|
16
|
+
export { duration_default as default };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { get, set } from "./schedule.js";
|
|
2
|
+
function easeConstant(e, n) {
|
|
3
|
+
if (typeof n != "function") throw Error();
|
|
4
|
+
return function() {
|
|
5
|
+
set(this, e).ease = n;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
function ease_default(t) {
|
|
9
|
+
var r = this._id;
|
|
10
|
+
return arguments.length ? this.each(easeConstant(r, t)) : get(this.node(), r).ease;
|
|
11
|
+
}
|
|
12
|
+
export { ease_default as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { set } from "./schedule.js";
|
|
2
|
+
function easeVarying(t, n) {
|
|
3
|
+
return function() {
|
|
4
|
+
var r = n.apply(this, arguments);
|
|
5
|
+
if (typeof r != "function") throw Error();
|
|
6
|
+
set(this, t).ease = r;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
function easeVarying_default(e) {
|
|
10
|
+
if (typeof e != "function") throw Error();
|
|
11
|
+
return this.each(easeVarying(this._id, e));
|
|
12
|
+
}
|
|
13
|
+
export { easeVarying_default as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { set } from "./schedule.js";
|
|
2
|
+
function end_default() {
|
|
3
|
+
var t, n, r = this, i = r._id, a = r.size();
|
|
4
|
+
return new Promise(function(o, s) {
|
|
5
|
+
var c = { value: s }, l = { value: function() {
|
|
6
|
+
--a === 0 && o();
|
|
7
|
+
} };
|
|
8
|
+
r.each(function() {
|
|
9
|
+
var r = set(this, i), a = r.on;
|
|
10
|
+
a !== t && (n = (t = a).copy(), n._.cancel.push(c), n._.interrupt.push(c), n._.end.push(l)), r.on = n;
|
|
11
|
+
}), a === 0 && o();
|
|
12
|
+
});
|
|
13
|
+
}
|
|
14
|
+
export { end_default as default };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import matcher_default from "../../../d3-selection/src/matcher.js";
|
|
2
|
+
import { Transition } from "./index.js";
|
|
3
|
+
function filter_default(n) {
|
|
4
|
+
typeof n != "function" && (n = matcher_default(n));
|
|
5
|
+
for (var r = this._groups, i = r.length, a = Array(i), o = 0; o < i; ++o) for (var s = r[o], c = s.length, l = a[o] = [], u, d = 0; d < c; ++d) (u = s[d]) && n.call(u, u.__data__, d, s) && l.push(u);
|
|
6
|
+
return new Transition(a, this._parents, this._name, this._id);
|
|
7
|
+
}
|
|
8
|
+
export { filter_default as default };
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import selection_default from "../../../d3-selection/src/selection/index.js";
|
|
2
|
+
import tween_default from "./tween.js";
|
|
3
|
+
import attr_default from "./attr.js";
|
|
4
|
+
import attrTween_default from "./attrTween.js";
|
|
5
|
+
import delay_default from "./delay.js";
|
|
6
|
+
import duration_default from "./duration.js";
|
|
7
|
+
import ease_default from "./ease.js";
|
|
8
|
+
import easeVarying_default from "./easeVarying.js";
|
|
9
|
+
import filter_default from "./filter.js";
|
|
10
|
+
import merge_default from "./merge.js";
|
|
11
|
+
import on_default from "./on.js";
|
|
12
|
+
import remove_default from "./remove.js";
|
|
13
|
+
import select_default from "./select.js";
|
|
14
|
+
import selectAll_default from "./selectAll.js";
|
|
15
|
+
import selection_default$1 from "./selection.js";
|
|
16
|
+
import style_default from "./style.js";
|
|
17
|
+
import styleTween_default from "./styleTween.js";
|
|
18
|
+
import text_default from "./text.js";
|
|
19
|
+
import textTween_default from "./textTween.js";
|
|
20
|
+
import transition_default from "./transition.js";
|
|
21
|
+
import end_default from "./end.js";
|
|
22
|
+
var id = 0;
|
|
23
|
+
function Transition(t, C, w, T) {
|
|
24
|
+
this._groups = t, this._parents = C, this._name = w, this._id = T;
|
|
25
|
+
}
|
|
26
|
+
function transition(C) {
|
|
27
|
+
return selection_default().transition(C);
|
|
28
|
+
}
|
|
29
|
+
function newId() {
|
|
30
|
+
return ++id;
|
|
31
|
+
}
|
|
32
|
+
var selection_prototype = selection_default.prototype;
|
|
33
|
+
Transition.prototype = transition.prototype = {
|
|
34
|
+
constructor: Transition,
|
|
35
|
+
select: select_default,
|
|
36
|
+
selectAll: selectAll_default,
|
|
37
|
+
selectChild: selection_prototype.selectChild,
|
|
38
|
+
selectChildren: selection_prototype.selectChildren,
|
|
39
|
+
filter: filter_default,
|
|
40
|
+
merge: merge_default,
|
|
41
|
+
selection: selection_default$1,
|
|
42
|
+
transition: transition_default,
|
|
43
|
+
call: selection_prototype.call,
|
|
44
|
+
nodes: selection_prototype.nodes,
|
|
45
|
+
node: selection_prototype.node,
|
|
46
|
+
size: selection_prototype.size,
|
|
47
|
+
empty: selection_prototype.empty,
|
|
48
|
+
each: selection_prototype.each,
|
|
49
|
+
on: on_default,
|
|
50
|
+
attr: attr_default,
|
|
51
|
+
attrTween: attrTween_default,
|
|
52
|
+
style: style_default,
|
|
53
|
+
styleTween: styleTween_default,
|
|
54
|
+
text: text_default,
|
|
55
|
+
textTween: textTween_default,
|
|
56
|
+
remove: remove_default,
|
|
57
|
+
tween: tween_default,
|
|
58
|
+
delay: delay_default,
|
|
59
|
+
duration: duration_default,
|
|
60
|
+
ease: ease_default,
|
|
61
|
+
easeVarying: easeVarying_default,
|
|
62
|
+
end: end_default,
|
|
63
|
+
[Symbol.iterator]: selection_prototype[Symbol.iterator]
|
|
64
|
+
};
|
|
65
|
+
export { Transition, transition as default, newId };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import color from "../../../d3-color/src/color.js";
|
|
2
|
+
import rgb_default from "../../../d3-interpolate/src/rgb.js";
|
|
3
|
+
import number_default from "../../../d3-interpolate/src/number.js";
|
|
4
|
+
import string_default from "../../../d3-interpolate/src/string.js";
|
|
5
|
+
function interpolate_default(i, a) {
|
|
6
|
+
var o;
|
|
7
|
+
return (typeof a == "number" ? number_default : a instanceof color ? rgb_default : (o = color(a)) ? (a = o, rgb_default) : string_default)(i, a);
|
|
8
|
+
}
|
|
9
|
+
export { interpolate_default as default };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Transition } from "./index.js";
|
|
2
|
+
function merge_default(t) {
|
|
3
|
+
if (t._id !== this._id) throw Error();
|
|
4
|
+
for (var n = this._groups, r = t._groups, i = n.length, a = r.length, o = Math.min(i, a), s = Array(i), c = 0; c < o; ++c) for (var l = n[c], u = r[c], d = l.length, f = s[c] = Array(d), p, m = 0; m < d; ++m) (p = l[m] || u[m]) && (f[m] = p);
|
|
5
|
+
for (; c < i; ++c) s[c] = n[c];
|
|
6
|
+
return new Transition(s, this._parents, this._name, this._id);
|
|
7
|
+
}
|
|
8
|
+
export { merge_default as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { get, init, set } from "./schedule.js";
|
|
2
|
+
function start(e) {
|
|
3
|
+
return (e + "").trim().split(/^|\s+/).every(function(e) {
|
|
4
|
+
var t = e.indexOf(".");
|
|
5
|
+
return t >= 0 && (e = e.slice(0, t)), !e || e === "start";
|
|
6
|
+
});
|
|
7
|
+
}
|
|
8
|
+
function onFunction(e, i, a) {
|
|
9
|
+
var o, s, c = start(i) ? init : set;
|
|
10
|
+
return function() {
|
|
11
|
+
var t = c(this, e), n = t.on;
|
|
12
|
+
n !== o && (s = (o = n).copy()).on(i, a), t.on = s;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
function on_default(t, n) {
|
|
16
|
+
var r = this._id;
|
|
17
|
+
return arguments.length < 2 ? get(this.node(), r).on.on(t) : this.each(onFunction(r, t, n));
|
|
18
|
+
}
|
|
19
|
+
export { on_default as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
function removeFunction(e) {
|
|
2
|
+
return function() {
|
|
3
|
+
var t = this.parentNode;
|
|
4
|
+
for (var n in this.__transition) if (+n !== e) return;
|
|
5
|
+
t && t.removeChild(this);
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
function remove_default() {
|
|
9
|
+
return this.on("end.remove", removeFunction(this._id));
|
|
10
|
+
}
|
|
11
|
+
export { remove_default as default };
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import dispatch_default from "../../../d3-dispatch/src/dispatch.js";
|
|
2
|
+
import { timer } from "../../../d3-timer/src/timer.js";
|
|
3
|
+
import timeout_default from "../../../d3-timer/src/timeout.js";
|
|
4
|
+
var emptyOn = dispatch_default("start", "end", "cancel", "interrupt"), emptyTween = [], STARTING = 2, ENDING = 5, ENDED = 6;
|
|
5
|
+
function schedule_default(e, t, n, a, o, s) {
|
|
6
|
+
var c = e.__transition;
|
|
7
|
+
if (!c) e.__transition = {};
|
|
8
|
+
else if (n in c) return;
|
|
9
|
+
create(e, n, {
|
|
10
|
+
name: t,
|
|
11
|
+
index: a,
|
|
12
|
+
group: o,
|
|
13
|
+
on: emptyOn,
|
|
14
|
+
tween: emptyTween,
|
|
15
|
+
time: s.time,
|
|
16
|
+
delay: s.delay,
|
|
17
|
+
duration: s.duration,
|
|
18
|
+
ease: s.ease,
|
|
19
|
+
timer: null,
|
|
20
|
+
state: 0
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
function init(e, t) {
|
|
24
|
+
var n = get(e, t);
|
|
25
|
+
if (n.state > 0) throw Error("too late; already scheduled");
|
|
26
|
+
return n;
|
|
27
|
+
}
|
|
28
|
+
function set(e, t) {
|
|
29
|
+
var n = get(e, t);
|
|
30
|
+
if (n.state > 3) throw Error("too late; already running");
|
|
31
|
+
return n;
|
|
32
|
+
}
|
|
33
|
+
function get(e, t) {
|
|
34
|
+
var n = e.__transition;
|
|
35
|
+
if (!n || !(n = n[t])) throw Error("transition not found");
|
|
36
|
+
return n;
|
|
37
|
+
}
|
|
38
|
+
function create(e, r, i) {
|
|
39
|
+
var a = e.__transition, o;
|
|
40
|
+
a[r] = i, i.timer = timer(s, 0, i.time);
|
|
41
|
+
function s(e) {
|
|
42
|
+
i.state = 1, i.timer.restart(c, i.delay, i.time), i.delay <= e && c(e - i.delay);
|
|
43
|
+
}
|
|
44
|
+
function c(t) {
|
|
45
|
+
var s, d, f, p;
|
|
46
|
+
if (i.state !== 1) return u();
|
|
47
|
+
for (s in a) if (p = a[s], p.name === i.name) {
|
|
48
|
+
if (p.state === 3) return timeout_default(c);
|
|
49
|
+
p.state === 4 ? (p.state = 6, p.timer.stop(), p.on.call("interrupt", e, e.__data__, p.index, p.group), delete a[s]) : +s < r && (p.state = 6, p.timer.stop(), p.on.call("cancel", e, e.__data__, p.index, p.group), delete a[s]);
|
|
50
|
+
}
|
|
51
|
+
if (timeout_default(function() {
|
|
52
|
+
i.state === 3 && (i.state = 4, i.timer.restart(l, i.delay, i.time), l(t));
|
|
53
|
+
}), i.state = 2, i.on.call("start", e, e.__data__, i.index, i.group), i.state === 2) {
|
|
54
|
+
for (i.state = 3, o = Array(f = i.tween.length), s = 0, d = -1; s < f; ++s) (p = i.tween[s].value.call(e, e.__data__, i.index, i.group)) && (o[++d] = p);
|
|
55
|
+
o.length = d + 1;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
function l(t) {
|
|
59
|
+
for (var n = t < i.duration ? i.ease.call(null, t / i.duration) : (i.timer.restart(u), i.state = 5, 1), r = -1, a = o.length; ++r < a;) o[r].call(e, n);
|
|
60
|
+
i.state === 5 && (i.on.call("end", e, e.__data__, i.index, i.group), u());
|
|
61
|
+
}
|
|
62
|
+
function u() {
|
|
63
|
+
for (var t in i.state = 6, i.timer.stop(), delete a[r], a) return;
|
|
64
|
+
delete e.__transition;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
export { ENDED, ENDING, STARTING, schedule_default as default, get, init, set };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import selector_default from "../../../d3-selection/src/selector.js";
|
|
2
|
+
import schedule_default, { get } from "./schedule.js";
|
|
3
|
+
import { Transition } from "./index.js";
|
|
4
|
+
function select_default(i) {
|
|
5
|
+
var a = this._name, o = this._id;
|
|
6
|
+
typeof i != "function" && (i = selector_default(i));
|
|
7
|
+
for (var s = this._groups, c = s.length, l = Array(c), u = 0; u < c; ++u) for (var d = s[u], f = d.length, p = l[u] = Array(f), m, h, g = 0; g < f; ++g) (m = d[g]) && (h = i.call(m, m.__data__, g, d)) && ("__data__" in m && (h.__data__ = m.__data__), p[g] = h, schedule_default(p[g], a, o, g, p, get(m, o)));
|
|
8
|
+
return new Transition(l, this._parents, a, o);
|
|
9
|
+
}
|
|
10
|
+
export { select_default as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import selectorAll_default from "../../../d3-selection/src/selectorAll.js";
|
|
2
|
+
import schedule_default, { get } from "./schedule.js";
|
|
3
|
+
import { Transition } from "./index.js";
|
|
4
|
+
function selectAll_default(i) {
|
|
5
|
+
var a = this._name, o = this._id;
|
|
6
|
+
typeof i != "function" && (i = selectorAll_default(i));
|
|
7
|
+
for (var s = this._groups, c = s.length, l = [], u = [], d = 0; d < c; ++d) for (var f = s[d], p = f.length, m, h = 0; h < p; ++h) if (m = f[h]) {
|
|
8
|
+
for (var g = i.call(m, m.__data__, h, f), _, v = get(m, o), y = 0, b = g.length; y < b; ++y) (_ = g[y]) && schedule_default(_, a, o, y, g, v);
|
|
9
|
+
l.push(g), u.push(m);
|
|
10
|
+
}
|
|
11
|
+
return new Transition(l, u, a, o);
|
|
12
|
+
}
|
|
13
|
+
export { selectAll_default as default };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import selection_default from "../../../d3-selection/src/selection/index.js";
|
|
2
|
+
var Selection = selection_default.prototype.constructor;
|
|
3
|
+
function selection_default$1() {
|
|
4
|
+
return new Selection(this._groups, this._parents);
|
|
5
|
+
}
|
|
6
|
+
export { selection_default$1 as default };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { styleValue } from "../../../d3-selection/src/selection/style.js";
|
|
2
|
+
import { interpolateTransformCss } from "../../../d3-interpolate/src/transform/index.js";
|
|
3
|
+
import { set } from "./schedule.js";
|
|
4
|
+
import { tweenValue } from "./tween.js";
|
|
5
|
+
import interpolate_default from "./interpolate.js";
|
|
6
|
+
function styleNull(t, n) {
|
|
7
|
+
var r, i, a;
|
|
8
|
+
return function() {
|
|
9
|
+
var o = styleValue(this, t), s = (this.style.removeProperty(t), styleValue(this, t));
|
|
10
|
+
return o === s ? null : o === r && s === i ? a : a = n(r = o, i = s);
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
function styleRemove(e) {
|
|
14
|
+
return function() {
|
|
15
|
+
this.style.removeProperty(e);
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
function styleConstant(t, n, r) {
|
|
19
|
+
var i, a = r + "", o;
|
|
20
|
+
return function() {
|
|
21
|
+
var s = styleValue(this, t);
|
|
22
|
+
return s === a ? null : s === i ? o : o = n(i = s, r);
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
function styleFunction(t, n, r) {
|
|
26
|
+
var i, a, o;
|
|
27
|
+
return function() {
|
|
28
|
+
var s = styleValue(this, t), c = r(this), l = c + "";
|
|
29
|
+
return c ?? (l = c = (this.style.removeProperty(t), styleValue(this, t))), s === l ? null : s === i && l === a ? o : (a = l, o = n(i = s, c));
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
function styleMaybeRemove(e, t) {
|
|
33
|
+
var r, i, a, s = "style." + t, c = "end." + s, l;
|
|
34
|
+
return function() {
|
|
35
|
+
var u = set(this, e), d = u.on, f = u.value[s] == null ? l ||= styleRemove(t) : void 0;
|
|
36
|
+
(d !== r || a !== f) && (i = (r = d).copy()).on(c, a = f), u.on = i;
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function style_default(e, n, u) {
|
|
40
|
+
var d = (e += "") == "transform" ? interpolateTransformCss : interpolate_default;
|
|
41
|
+
return n == null ? this.styleTween(e, styleNull(e, d)).on("end.style." + e, styleRemove(e)) : typeof n == "function" ? this.styleTween(e, styleFunction(e, d, tweenValue(this, "style." + e, n))).each(styleMaybeRemove(this._id, e)) : this.styleTween(e, styleConstant(e, d, n), u).on("end.style." + e, null);
|
|
42
|
+
}
|
|
43
|
+
export { style_default as default };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
function styleInterpolate(e, t, n) {
|
|
2
|
+
return function(r) {
|
|
3
|
+
this.style.setProperty(e, t.call(this, r), n);
|
|
4
|
+
};
|
|
5
|
+
}
|
|
6
|
+
function styleTween(t, n, r) {
|
|
7
|
+
var i, a;
|
|
8
|
+
function o() {
|
|
9
|
+
var o = n.apply(this, arguments);
|
|
10
|
+
return o !== a && (i = (a = o) && styleInterpolate(t, o, r)), i;
|
|
11
|
+
}
|
|
12
|
+
return o._value = n, o;
|
|
13
|
+
}
|
|
14
|
+
function styleTween_default(e, n, r) {
|
|
15
|
+
var i = "style." + (e += "");
|
|
16
|
+
if (arguments.length < 2) return (i = this.tween(i)) && i._value;
|
|
17
|
+
if (n == null) return this.tween(i, null);
|
|
18
|
+
if (typeof n != "function") throw Error();
|
|
19
|
+
return this.tween(i, styleTween(e, n, r ?? ""));
|
|
20
|
+
}
|
|
21
|
+
export { styleTween_default as default };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { tweenValue } from "./tween.js";
|
|
2
|
+
function textConstant(e) {
|
|
3
|
+
return function() {
|
|
4
|
+
this.textContent = e;
|
|
5
|
+
};
|
|
6
|
+
}
|
|
7
|
+
function textFunction(e) {
|
|
8
|
+
return function() {
|
|
9
|
+
this.textContent = e(this) ?? "";
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
function text_default(r) {
|
|
13
|
+
return this.tween("text", typeof r == "function" ? textFunction(tweenValue(this, "text", r)) : textConstant(r == null ? "" : r + ""));
|
|
14
|
+
}
|
|
15
|
+
export { text_default as default };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
function textInterpolate(e) {
|
|
2
|
+
return function(t) {
|
|
3
|
+
this.textContent = e.call(this, t);
|
|
4
|
+
};
|
|
5
|
+
}
|
|
6
|
+
function textTween(t) {
|
|
7
|
+
var n, r;
|
|
8
|
+
function i() {
|
|
9
|
+
var i = t.apply(this, arguments);
|
|
10
|
+
return i !== r && (n = (r = i) && textInterpolate(i)), n;
|
|
11
|
+
}
|
|
12
|
+
return i._value = t, i;
|
|
13
|
+
}
|
|
14
|
+
function textTween_default(e) {
|
|
15
|
+
var n = "text";
|
|
16
|
+
if (arguments.length < 1) return (n = this.tween(n)) && n._value;
|
|
17
|
+
if (e == null) return this.tween(n, null);
|
|
18
|
+
if (typeof e != "function") throw Error();
|
|
19
|
+
return this.tween(n, textTween(e));
|
|
20
|
+
}
|
|
21
|
+
export { textTween_default as default };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import schedule_default, { get } from "./schedule.js";
|
|
2
|
+
import { Transition, newId } from "./index.js";
|
|
3
|
+
function transition_default() {
|
|
4
|
+
for (var i = this._name, a = this._id, o = newId(), s = this._groups, c = s.length, l = 0; l < c; ++l) for (var u = s[l], d = u.length, f, p = 0; p < d; ++p) if (f = u[p]) {
|
|
5
|
+
var m = get(f, a);
|
|
6
|
+
schedule_default(f, i, o, p, u, {
|
|
7
|
+
time: m.time + m.delay + m.duration,
|
|
8
|
+
delay: 0,
|
|
9
|
+
duration: m.duration,
|
|
10
|
+
ease: m.ease
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
return new Transition(s, this._parents, i, o);
|
|
14
|
+
}
|
|
15
|
+
export { transition_default as default };
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { get, set } from "./schedule.js";
|
|
2
|
+
function tweenRemove(e, n) {
|
|
3
|
+
var r, i;
|
|
4
|
+
return function() {
|
|
5
|
+
var a = set(this, e), o = a.tween;
|
|
6
|
+
if (o !== r) {
|
|
7
|
+
i = r = o;
|
|
8
|
+
for (var s = 0, c = i.length; s < c; ++s) if (i[s].name === n) {
|
|
9
|
+
i = i.slice(), i.splice(s, 1);
|
|
10
|
+
break;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
a.tween = i;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
function tweenFunction(e, n, r) {
|
|
17
|
+
var i, a;
|
|
18
|
+
if (typeof r != "function") throw Error();
|
|
19
|
+
return function() {
|
|
20
|
+
var o = set(this, e), s = o.tween;
|
|
21
|
+
if (s !== i) {
|
|
22
|
+
a = (i = s).slice();
|
|
23
|
+
for (var c = {
|
|
24
|
+
name: n,
|
|
25
|
+
value: r
|
|
26
|
+
}, l = 0, u = a.length; l < u; ++l) if (a[l].name === n) {
|
|
27
|
+
a[l] = c;
|
|
28
|
+
break;
|
|
29
|
+
}
|
|
30
|
+
l === u && a.push(c);
|
|
31
|
+
}
|
|
32
|
+
o.tween = a;
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
function tween_default(t, i) {
|
|
36
|
+
var a = this._id;
|
|
37
|
+
if (t += "", arguments.length < 2) {
|
|
38
|
+
for (var o = get(this.node(), a).tween, s = 0, c = o.length, l; s < c; ++s) if ((l = o[s]).name === t) return l.value;
|
|
39
|
+
return null;
|
|
40
|
+
}
|
|
41
|
+
return this.each((i == null ? tweenRemove : tweenFunction)(a, t, i));
|
|
42
|
+
}
|
|
43
|
+
function tweenValue(n, r, i) {
|
|
44
|
+
var a = n._id;
|
|
45
|
+
return n.each(function() {
|
|
46
|
+
var e = set(this, a);
|
|
47
|
+
(e.value ||= {})[r] = i.apply(this, arguments);
|
|
48
|
+
}), function(t) {
|
|
49
|
+
return get(t, a).value[r];
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
export { tween_default as default, tweenValue };
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
function Transform(e, t, n) {
|
|
2
|
+
this.k = e, this.x = t, this.y = n;
|
|
3
|
+
}
|
|
4
|
+
Transform.prototype = {
|
|
5
|
+
constructor: Transform,
|
|
6
|
+
scale: function(t) {
|
|
7
|
+
return t === 1 ? this : new Transform(this.k * t, this.x, this.y);
|
|
8
|
+
},
|
|
9
|
+
translate: function(t, n) {
|
|
10
|
+
return t === 0 & n === 0 ? this : new Transform(this.k, this.x + this.k * t, this.y + this.k * n);
|
|
11
|
+
},
|
|
12
|
+
apply: function(e) {
|
|
13
|
+
return [e[0] * this.k + this.x, e[1] * this.k + this.y];
|
|
14
|
+
},
|
|
15
|
+
applyX: function(e) {
|
|
16
|
+
return e * this.k + this.x;
|
|
17
|
+
},
|
|
18
|
+
applyY: function(e) {
|
|
19
|
+
return e * this.k + this.y;
|
|
20
|
+
},
|
|
21
|
+
invert: function(e) {
|
|
22
|
+
return [(e[0] - this.x) / this.k, (e[1] - this.y) / this.k];
|
|
23
|
+
},
|
|
24
|
+
invertX: function(e) {
|
|
25
|
+
return (e - this.x) / this.k;
|
|
26
|
+
},
|
|
27
|
+
invertY: function(e) {
|
|
28
|
+
return (e - this.y) / this.k;
|
|
29
|
+
},
|
|
30
|
+
rescaleX: function(e) {
|
|
31
|
+
return e.copy().domain(e.range().map(this.invertX, this).map(e.invert, e));
|
|
32
|
+
},
|
|
33
|
+
rescaleY: function(e) {
|
|
34
|
+
return e.copy().domain(e.range().map(this.invertY, this).map(e.invert, e));
|
|
35
|
+
},
|
|
36
|
+
toString: function() {
|
|
37
|
+
return "translate(" + this.x + "," + this.y + ") scale(" + this.k + ")";
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
var identity = new Transform(1, 0, 0);
|
|
41
|
+
transform.prototype = Transform.prototype;
|
|
42
|
+
function transform(e) {
|
|
43
|
+
for (; !e.__zoom;) if (!(e = e.parentNode)) return identity;
|
|
44
|
+
return e.__zoom;
|
|
45
|
+
}
|
|
46
|
+
export { Transform, transform as default, identity };
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import forEach_default from "../../../lodash-es/forEach.js";
|
|
2
|
+
import uniqueId_default from "../../../lodash-es/uniqueId.js";
|
|
3
|
+
import { greedyFAS } from "./greedy-fas.js";
|
|
4
|
+
function run(r) {
|
|
5
|
+
forEach_default(r.graph().acyclicer === "greedy" ? greedyFAS(r, a(r)) : dfsFAS(r), function(e) {
|
|
6
|
+
var n = r.edge(e);
|
|
7
|
+
r.removeEdge(e), n.forwardName = e.name, n.reversed = !0, r.setEdge(e.w, e.v, n, uniqueId_default("rev"));
|
|
8
|
+
});
|
|
9
|
+
function a(e) {
|
|
10
|
+
return function(t) {
|
|
11
|
+
return e.edge(t).weight;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
function dfsFAS(t) {
|
|
16
|
+
var n = [], r = {}, i = {};
|
|
17
|
+
function a(o) {
|
|
18
|
+
Object.prototype.hasOwnProperty.call(i, o) || (i[o] = !0, r[o] = !0, forEach_default(t.outEdges(o), function(e) {
|
|
19
|
+
Object.prototype.hasOwnProperty.call(r, e.w) ? n.push(e) : a(e.w);
|
|
20
|
+
}), delete r[o]);
|
|
21
|
+
}
|
|
22
|
+
return forEach_default(t.nodes(), a), n;
|
|
23
|
+
}
|
|
24
|
+
function undo(t) {
|
|
25
|
+
forEach_default(t.edges(), function(e) {
|
|
26
|
+
var n = t.edge(e);
|
|
27
|
+
if (n.reversed) {
|
|
28
|
+
t.removeEdge(e);
|
|
29
|
+
var r = n.forwardName;
|
|
30
|
+
delete n.reversed, delete n.forwardName, t.setEdge(e.w, e.v, n, r);
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
export { run, undo };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import forEach_default from "../../../lodash-es/forEach.js";
|
|
2
|
+
import { addDummyNode } from "./util.js";
|
|
3
|
+
function addBorderSegments(t) {
|
|
4
|
+
function n(i) {
|
|
5
|
+
var a = t.children(i), o = t.node(i);
|
|
6
|
+
if (a.length && forEach_default(a, n), Object.prototype.hasOwnProperty.call(o, "minRank")) {
|
|
7
|
+
o.borderLeft = [], o.borderRight = [];
|
|
8
|
+
for (var s = o.minRank, c = o.maxRank + 1; s < c; ++s) addBorderNode(t, "borderLeft", "_bl", i, o, s), addBorderNode(t, "borderRight", "_br", i, o, s);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
forEach_default(t.children(), n);
|
|
12
|
+
}
|
|
13
|
+
function addBorderNode(e, n, r, i, a, o) {
|
|
14
|
+
var s = {
|
|
15
|
+
width: 0,
|
|
16
|
+
height: 0,
|
|
17
|
+
rank: o,
|
|
18
|
+
borderType: n
|
|
19
|
+
}, c = a[n][o - 1], l = addDummyNode(e, "border", s, r);
|
|
20
|
+
a[n][o] = l, e.setParent(l, i), c && e.setEdge(c, l, { weight: 1 });
|
|
21
|
+
}
|
|
22
|
+
export { addBorderSegments };
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import forEach_default from "../../../lodash-es/forEach.js";
|
|
2
|
+
function adjust(e) {
|
|
3
|
+
var o = e.graph().rankdir.toLowerCase();
|
|
4
|
+
(o === "lr" || o === "rl") && swapWidthHeight(e);
|
|
5
|
+
}
|
|
6
|
+
function undo(e) {
|
|
7
|
+
var o = e.graph().rankdir.toLowerCase();
|
|
8
|
+
(o === "bt" || o === "rl") && reverseY(e), (o === "lr" || o === "rl") && (swapXY(e), swapWidthHeight(e));
|
|
9
|
+
}
|
|
10
|
+
function swapWidthHeight(o) {
|
|
11
|
+
forEach_default(o.nodes(), function(e) {
|
|
12
|
+
swapWidthHeightOne(o.node(e));
|
|
13
|
+
}), forEach_default(o.edges(), function(e) {
|
|
14
|
+
swapWidthHeightOne(o.edge(e));
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
function swapWidthHeightOne(e) {
|
|
18
|
+
var o = e.width;
|
|
19
|
+
e.width = e.height, e.height = o;
|
|
20
|
+
}
|
|
21
|
+
function reverseY(o) {
|
|
22
|
+
forEach_default(o.nodes(), function(e) {
|
|
23
|
+
reverseYOne(o.node(e));
|
|
24
|
+
}), forEach_default(o.edges(), function(s) {
|
|
25
|
+
var c = o.edge(s);
|
|
26
|
+
forEach_default(c.points, reverseYOne), Object.prototype.hasOwnProperty.call(c, "y") && reverseYOne(c);
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
function reverseYOne(e) {
|
|
30
|
+
e.y = -e.y;
|
|
31
|
+
}
|
|
32
|
+
function swapXY(o) {
|
|
33
|
+
forEach_default(o.nodes(), function(e) {
|
|
34
|
+
swapXYOne(o.node(e));
|
|
35
|
+
}), forEach_default(o.edges(), function(s) {
|
|
36
|
+
var c = o.edge(s);
|
|
37
|
+
forEach_default(c.points, swapXYOne), Object.prototype.hasOwnProperty.call(c, "x") && swapXYOne(c);
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
function swapXYOne(e) {
|
|
41
|
+
var o = e.x;
|
|
42
|
+
e.x = e.y, e.y = o;
|
|
43
|
+
}
|
|
44
|
+
export { adjust, undo };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
var List = class {
|
|
2
|
+
constructor() {
|
|
3
|
+
var e = {};
|
|
4
|
+
e._next = e._prev = e, this._sentinel = e;
|
|
5
|
+
}
|
|
6
|
+
dequeue() {
|
|
7
|
+
var e = this._sentinel, n = e._prev;
|
|
8
|
+
if (n !== e) return unlink(n), n;
|
|
9
|
+
}
|
|
10
|
+
enqueue(e) {
|
|
11
|
+
var n = this._sentinel;
|
|
12
|
+
e._prev && e._next && unlink(e), e._next = n._next, n._next._prev = e, n._next = e, e._prev = n;
|
|
13
|
+
}
|
|
14
|
+
toString() {
|
|
15
|
+
for (var e = [], t = this._sentinel, r = t._prev; r !== t;) e.push(JSON.stringify(r, filterOutLinks)), r = r._prev;
|
|
16
|
+
return "[" + e.join(", ") + "]";
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
function unlink(e) {
|
|
20
|
+
e._prev._next = e._next, e._next._prev = e._prev, delete e._next, delete e._prev;
|
|
21
|
+
}
|
|
22
|
+
function filterOutLinks(e, t) {
|
|
23
|
+
if (e !== "_next" && e !== "_prev") return t;
|
|
24
|
+
}
|
|
25
|
+
export { List };
|