@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,486 @@
|
|
|
1
|
+
import { timeDay, utcDay } from "../../d3-time/src/day.js";
|
|
2
|
+
import { timeMonday, timeSunday, timeThursday, utcMonday, utcSunday, utcThursday } from "../../d3-time/src/week.js";
|
|
3
|
+
import { timeYear, utcYear } from "../../d3-time/src/year.js";
|
|
4
|
+
function localDate(e) {
|
|
5
|
+
if (0 <= e.y && e.y < 100) {
|
|
6
|
+
var o = new Date(-1, e.m, e.d, e.H, e.M, e.S, e.L);
|
|
7
|
+
return o.setFullYear(e.y), o;
|
|
8
|
+
}
|
|
9
|
+
return new Date(e.y, e.m, e.d, e.H, e.M, e.S, e.L);
|
|
10
|
+
}
|
|
11
|
+
function utcDate(e) {
|
|
12
|
+
if (0 <= e.y && e.y < 100) {
|
|
13
|
+
var o = new Date(Date.UTC(-1, e.m, e.d, e.H, e.M, e.S, e.L));
|
|
14
|
+
return o.setUTCFullYear(e.y), o;
|
|
15
|
+
}
|
|
16
|
+
return new Date(Date.UTC(e.y, e.m, e.d, e.H, e.M, e.S, e.L));
|
|
17
|
+
}
|
|
18
|
+
function newDate(e, o, s) {
|
|
19
|
+
return {
|
|
20
|
+
y: e,
|
|
21
|
+
m: o,
|
|
22
|
+
d: s,
|
|
23
|
+
H: 0,
|
|
24
|
+
M: 0,
|
|
25
|
+
S: 0,
|
|
26
|
+
L: 0
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
function formatLocale(c) {
|
|
30
|
+
var l = c.dateTime, d = c.date, f = c.time, p = c.periods, m = c.days, h = c.shortDays, g = c.months, _ = c.shortMonths, v = formatRe(p), y = formatLookup(p), b = formatRe(m), x = formatLookup(m), S = formatRe(h), C = formatLookup(h), w = formatRe(g), T = formatLookup(g), E = formatRe(_), D = formatLookup(_), O = {
|
|
31
|
+
a: H,
|
|
32
|
+
A: U,
|
|
33
|
+
b: W,
|
|
34
|
+
B: G,
|
|
35
|
+
c: null,
|
|
36
|
+
d: formatDayOfMonth,
|
|
37
|
+
e: formatDayOfMonth,
|
|
38
|
+
f: formatMicroseconds,
|
|
39
|
+
g: formatYearISO,
|
|
40
|
+
G: formatFullYearISO,
|
|
41
|
+
H: formatHour24,
|
|
42
|
+
I: formatHour12,
|
|
43
|
+
j: formatDayOfYear,
|
|
44
|
+
L: formatMilliseconds,
|
|
45
|
+
m: formatMonthNumber,
|
|
46
|
+
M: formatMinutes,
|
|
47
|
+
p: K,
|
|
48
|
+
q,
|
|
49
|
+
Q: formatUnixTimestamp,
|
|
50
|
+
s: formatUnixTimestampSeconds,
|
|
51
|
+
S: formatSeconds,
|
|
52
|
+
u: formatWeekdayNumberMonday,
|
|
53
|
+
U: formatWeekNumberSunday,
|
|
54
|
+
V: formatWeekNumberISO,
|
|
55
|
+
w: formatWeekdayNumberSunday,
|
|
56
|
+
W: formatWeekNumberMonday,
|
|
57
|
+
x: null,
|
|
58
|
+
X: null,
|
|
59
|
+
y: formatYear,
|
|
60
|
+
Y: formatFullYear,
|
|
61
|
+
Z: formatZone,
|
|
62
|
+
"%": formatLiteralPercent
|
|
63
|
+
}, k = {
|
|
64
|
+
a: J,
|
|
65
|
+
A: Y,
|
|
66
|
+
b: X,
|
|
67
|
+
B: Z,
|
|
68
|
+
c: null,
|
|
69
|
+
d: formatUTCDayOfMonth,
|
|
70
|
+
e: formatUTCDayOfMonth,
|
|
71
|
+
f: formatUTCMicroseconds,
|
|
72
|
+
g: formatUTCYearISO,
|
|
73
|
+
G: formatUTCFullYearISO,
|
|
74
|
+
H: formatUTCHour24,
|
|
75
|
+
I: formatUTCHour12,
|
|
76
|
+
j: formatUTCDayOfYear,
|
|
77
|
+
L: formatUTCMilliseconds,
|
|
78
|
+
m: formatUTCMonthNumber,
|
|
79
|
+
M: formatUTCMinutes,
|
|
80
|
+
p: Q,
|
|
81
|
+
q: $,
|
|
82
|
+
Q: formatUnixTimestamp,
|
|
83
|
+
s: formatUnixTimestampSeconds,
|
|
84
|
+
S: formatUTCSeconds,
|
|
85
|
+
u: formatUTCWeekdayNumberMonday,
|
|
86
|
+
U: formatUTCWeekNumberSunday,
|
|
87
|
+
V: formatUTCWeekNumberISO,
|
|
88
|
+
w: formatUTCWeekdayNumberSunday,
|
|
89
|
+
W: formatUTCWeekNumberMonday,
|
|
90
|
+
x: null,
|
|
91
|
+
X: null,
|
|
92
|
+
y: formatUTCYear,
|
|
93
|
+
Y: formatUTCFullYear,
|
|
94
|
+
Z: formatUTCZone,
|
|
95
|
+
"%": formatLiteralPercent
|
|
96
|
+
}, A = {
|
|
97
|
+
a: F,
|
|
98
|
+
A: I,
|
|
99
|
+
b: L,
|
|
100
|
+
B: R,
|
|
101
|
+
c: z,
|
|
102
|
+
d: parseDayOfMonth,
|
|
103
|
+
e: parseDayOfMonth,
|
|
104
|
+
f: parseMicroseconds,
|
|
105
|
+
g: parseYear,
|
|
106
|
+
G: parseFullYear,
|
|
107
|
+
H: parseHour24,
|
|
108
|
+
I: parseHour24,
|
|
109
|
+
j: parseDayOfYear,
|
|
110
|
+
L: parseMilliseconds,
|
|
111
|
+
m: parseMonthNumber,
|
|
112
|
+
M: parseMinutes,
|
|
113
|
+
p: P,
|
|
114
|
+
q: parseQuarter,
|
|
115
|
+
Q: parseUnixTimestamp,
|
|
116
|
+
s: parseUnixTimestampSeconds,
|
|
117
|
+
S: parseSeconds,
|
|
118
|
+
u: parseWeekdayNumberMonday,
|
|
119
|
+
U: parseWeekNumberSunday,
|
|
120
|
+
V: parseWeekNumberISO,
|
|
121
|
+
w: parseWeekdayNumberSunday,
|
|
122
|
+
W: parseWeekNumberMonday,
|
|
123
|
+
x: B,
|
|
124
|
+
X: V,
|
|
125
|
+
y: parseYear,
|
|
126
|
+
Y: parseFullYear,
|
|
127
|
+
Z: parseZone,
|
|
128
|
+
"%": parseLiteralPercent
|
|
129
|
+
};
|
|
130
|
+
O.x = j(d, O), O.X = j(f, O), O.c = j(l, O), k.x = j(d, k), k.X = j(f, k), k.c = j(l, k);
|
|
131
|
+
function j(e, o) {
|
|
132
|
+
return function(s) {
|
|
133
|
+
var c = [], l = -1, u = 0, d = e.length, f, p, m;
|
|
134
|
+
for (s instanceof Date || (s = /* @__PURE__ */ new Date(+s)); ++l < d;) e.charCodeAt(l) === 37 && (c.push(e.slice(u, l)), (p = pads[f = e.charAt(++l)]) == null ? p = f === "e" ? " " : "0" : f = e.charAt(++l), (m = o[f]) && (f = m(s, p)), c.push(f), u = l + 1);
|
|
135
|
+
return c.push(e.slice(u, l)), c.join("");
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
function M(c, l) {
|
|
139
|
+
return function(d) {
|
|
140
|
+
var f = newDate(1900, void 0, 1), p = N(f, c, d += "", 0), m, h;
|
|
141
|
+
if (p != d.length) return null;
|
|
142
|
+
if ("Q" in f) return new Date(f.Q);
|
|
143
|
+
if ("s" in f) return new Date(f.s * 1e3 + ("L" in f ? f.L : 0));
|
|
144
|
+
if (l && !("Z" in f) && (f.Z = 0), "p" in f && (f.H = f.H % 12 + f.p * 12), f.m === void 0 && (f.m = "q" in f ? f.q : 0), "V" in f) {
|
|
145
|
+
if (f.V < 1 || f.V > 53) return null;
|
|
146
|
+
"w" in f || (f.w = 1), "Z" in f ? (m = utcDate(newDate(f.y, 0, 1)), h = m.getUTCDay(), m = h > 4 || h === 0 ? utcMonday.ceil(m) : utcMonday(m), m = utcDay.offset(m, (f.V - 1) * 7), f.y = m.getUTCFullYear(), f.m = m.getUTCMonth(), f.d = m.getUTCDate() + (f.w + 6) % 7) : (m = localDate(newDate(f.y, 0, 1)), h = m.getDay(), m = h > 4 || h === 0 ? timeMonday.ceil(m) : timeMonday(m), m = timeDay.offset(m, (f.V - 1) * 7), f.y = m.getFullYear(), f.m = m.getMonth(), f.d = m.getDate() + (f.w + 6) % 7);
|
|
147
|
+
} else ("W" in f || "U" in f) && ("w" in f || (f.w = "u" in f ? f.u % 7 : "W" in f ? 1 : 0), h = "Z" in f ? utcDate(newDate(f.y, 0, 1)).getUTCDay() : localDate(newDate(f.y, 0, 1)).getDay(), f.m = 0, f.d = "W" in f ? (f.w + 6) % 7 + f.W * 7 - (h + 5) % 7 : f.w + f.U * 7 - (h + 6) % 7);
|
|
148
|
+
return "Z" in f ? (f.H += f.Z / 100 | 0, f.M += f.Z % 100, utcDate(f)) : localDate(f);
|
|
149
|
+
};
|
|
150
|
+
}
|
|
151
|
+
function N(e, o, s, c) {
|
|
152
|
+
for (var l = 0, u = o.length, d = s.length, f, p; l < u;) {
|
|
153
|
+
if (c >= d) return -1;
|
|
154
|
+
if (f = o.charCodeAt(l++), f === 37) {
|
|
155
|
+
if (f = o.charAt(l++), p = A[f in pads ? o.charAt(l++) : f], !p || (c = p(e, s, c)) < 0) return -1;
|
|
156
|
+
} else if (f != s.charCodeAt(c++)) return -1;
|
|
157
|
+
}
|
|
158
|
+
return c;
|
|
159
|
+
}
|
|
160
|
+
function P(e, o, s) {
|
|
161
|
+
var c = v.exec(o.slice(s));
|
|
162
|
+
return c ? (e.p = y.get(c[0].toLowerCase()), s + c[0].length) : -1;
|
|
163
|
+
}
|
|
164
|
+
function F(e, o, s) {
|
|
165
|
+
var c = S.exec(o.slice(s));
|
|
166
|
+
return c ? (e.w = C.get(c[0].toLowerCase()), s + c[0].length) : -1;
|
|
167
|
+
}
|
|
168
|
+
function I(e, o, s) {
|
|
169
|
+
var c = b.exec(o.slice(s));
|
|
170
|
+
return c ? (e.w = x.get(c[0].toLowerCase()), s + c[0].length) : -1;
|
|
171
|
+
}
|
|
172
|
+
function L(e, o, s) {
|
|
173
|
+
var c = E.exec(o.slice(s));
|
|
174
|
+
return c ? (e.m = D.get(c[0].toLowerCase()), s + c[0].length) : -1;
|
|
175
|
+
}
|
|
176
|
+
function R(e, o, s) {
|
|
177
|
+
var c = w.exec(o.slice(s));
|
|
178
|
+
return c ? (e.m = T.get(c[0].toLowerCase()), s + c[0].length) : -1;
|
|
179
|
+
}
|
|
180
|
+
function z(e, o, s) {
|
|
181
|
+
return N(e, l, o, s);
|
|
182
|
+
}
|
|
183
|
+
function B(e, o, s) {
|
|
184
|
+
return N(e, d, o, s);
|
|
185
|
+
}
|
|
186
|
+
function V(e, o, s) {
|
|
187
|
+
return N(e, f, o, s);
|
|
188
|
+
}
|
|
189
|
+
function H(e) {
|
|
190
|
+
return h[e.getDay()];
|
|
191
|
+
}
|
|
192
|
+
function U(e) {
|
|
193
|
+
return m[e.getDay()];
|
|
194
|
+
}
|
|
195
|
+
function W(e) {
|
|
196
|
+
return _[e.getMonth()];
|
|
197
|
+
}
|
|
198
|
+
function G(e) {
|
|
199
|
+
return g[e.getMonth()];
|
|
200
|
+
}
|
|
201
|
+
function K(e) {
|
|
202
|
+
return p[+(e.getHours() >= 12)];
|
|
203
|
+
}
|
|
204
|
+
function q(e) {
|
|
205
|
+
return 1 + ~~(e.getMonth() / 3);
|
|
206
|
+
}
|
|
207
|
+
function J(e) {
|
|
208
|
+
return h[e.getUTCDay()];
|
|
209
|
+
}
|
|
210
|
+
function Y(e) {
|
|
211
|
+
return m[e.getUTCDay()];
|
|
212
|
+
}
|
|
213
|
+
function X(e) {
|
|
214
|
+
return _[e.getUTCMonth()];
|
|
215
|
+
}
|
|
216
|
+
function Z(e) {
|
|
217
|
+
return g[e.getUTCMonth()];
|
|
218
|
+
}
|
|
219
|
+
function Q(e) {
|
|
220
|
+
return p[+(e.getUTCHours() >= 12)];
|
|
221
|
+
}
|
|
222
|
+
function $(e) {
|
|
223
|
+
return 1 + ~~(e.getUTCMonth() / 3);
|
|
224
|
+
}
|
|
225
|
+
return {
|
|
226
|
+
format: function(e) {
|
|
227
|
+
var o = j(e += "", O);
|
|
228
|
+
return o.toString = function() {
|
|
229
|
+
return e;
|
|
230
|
+
}, o;
|
|
231
|
+
},
|
|
232
|
+
parse: function(e) {
|
|
233
|
+
var o = M(e += "", !1);
|
|
234
|
+
return o.toString = function() {
|
|
235
|
+
return e;
|
|
236
|
+
}, o;
|
|
237
|
+
},
|
|
238
|
+
utcFormat: function(e) {
|
|
239
|
+
var o = j(e += "", k);
|
|
240
|
+
return o.toString = function() {
|
|
241
|
+
return e;
|
|
242
|
+
}, o;
|
|
243
|
+
},
|
|
244
|
+
utcParse: function(e) {
|
|
245
|
+
var o = M(e += "", !0);
|
|
246
|
+
return o.toString = function() {
|
|
247
|
+
return e;
|
|
248
|
+
}, o;
|
|
249
|
+
}
|
|
250
|
+
};
|
|
251
|
+
}
|
|
252
|
+
var pads = {
|
|
253
|
+
"-": "",
|
|
254
|
+
_: " ",
|
|
255
|
+
0: "0"
|
|
256
|
+
}, numberRe = /^\s*\d+/, percentRe = /^%/, requoteRe = /[\\^$*+?|[\]().{}]/g;
|
|
257
|
+
function pad(e, o, s) {
|
|
258
|
+
var c = e < 0 ? "-" : "", l = (c ? -e : e) + "", u = l.length;
|
|
259
|
+
return c + (u < s ? Array(s - u + 1).join(o) + l : l);
|
|
260
|
+
}
|
|
261
|
+
function requote(e) {
|
|
262
|
+
return e.replace(requoteRe, "\\$&");
|
|
263
|
+
}
|
|
264
|
+
function formatRe(e) {
|
|
265
|
+
return RegExp("^(?:" + e.map(requote).join("|") + ")", "i");
|
|
266
|
+
}
|
|
267
|
+
function formatLookup(e) {
|
|
268
|
+
return new Map(e.map((e, o) => [e.toLowerCase(), o]));
|
|
269
|
+
}
|
|
270
|
+
function parseWeekdayNumberSunday(e, o, s) {
|
|
271
|
+
var c = numberRe.exec(o.slice(s, s + 1));
|
|
272
|
+
return c ? (e.w = +c[0], s + c[0].length) : -1;
|
|
273
|
+
}
|
|
274
|
+
function parseWeekdayNumberMonday(e, o, s) {
|
|
275
|
+
var c = numberRe.exec(o.slice(s, s + 1));
|
|
276
|
+
return c ? (e.u = +c[0], s + c[0].length) : -1;
|
|
277
|
+
}
|
|
278
|
+
function parseWeekNumberSunday(e, o, s) {
|
|
279
|
+
var c = numberRe.exec(o.slice(s, s + 2));
|
|
280
|
+
return c ? (e.U = +c[0], s + c[0].length) : -1;
|
|
281
|
+
}
|
|
282
|
+
function parseWeekNumberISO(e, o, s) {
|
|
283
|
+
var c = numberRe.exec(o.slice(s, s + 2));
|
|
284
|
+
return c ? (e.V = +c[0], s + c[0].length) : -1;
|
|
285
|
+
}
|
|
286
|
+
function parseWeekNumberMonday(e, o, s) {
|
|
287
|
+
var c = numberRe.exec(o.slice(s, s + 2));
|
|
288
|
+
return c ? (e.W = +c[0], s + c[0].length) : -1;
|
|
289
|
+
}
|
|
290
|
+
function parseFullYear(e, o, s) {
|
|
291
|
+
var c = numberRe.exec(o.slice(s, s + 4));
|
|
292
|
+
return c ? (e.y = +c[0], s + c[0].length) : -1;
|
|
293
|
+
}
|
|
294
|
+
function parseYear(e, o, s) {
|
|
295
|
+
var c = numberRe.exec(o.slice(s, s + 2));
|
|
296
|
+
return c ? (e.y = +c[0] + (+c[0] > 68 ? 1900 : 2e3), s + c[0].length) : -1;
|
|
297
|
+
}
|
|
298
|
+
function parseZone(e, o, s) {
|
|
299
|
+
var c = /^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(o.slice(s, s + 6));
|
|
300
|
+
return c ? (e.Z = c[1] ? 0 : -(c[2] + (c[3] || "00")), s + c[0].length) : -1;
|
|
301
|
+
}
|
|
302
|
+
function parseQuarter(e, o, s) {
|
|
303
|
+
var c = numberRe.exec(o.slice(s, s + 1));
|
|
304
|
+
return c ? (e.q = c[0] * 3 - 3, s + c[0].length) : -1;
|
|
305
|
+
}
|
|
306
|
+
function parseMonthNumber(e, o, s) {
|
|
307
|
+
var c = numberRe.exec(o.slice(s, s + 2));
|
|
308
|
+
return c ? (e.m = c[0] - 1, s + c[0].length) : -1;
|
|
309
|
+
}
|
|
310
|
+
function parseDayOfMonth(e, o, s) {
|
|
311
|
+
var c = numberRe.exec(o.slice(s, s + 2));
|
|
312
|
+
return c ? (e.d = +c[0], s + c[0].length) : -1;
|
|
313
|
+
}
|
|
314
|
+
function parseDayOfYear(e, o, s) {
|
|
315
|
+
var c = numberRe.exec(o.slice(s, s + 3));
|
|
316
|
+
return c ? (e.m = 0, e.d = +c[0], s + c[0].length) : -1;
|
|
317
|
+
}
|
|
318
|
+
function parseHour24(e, o, s) {
|
|
319
|
+
var c = numberRe.exec(o.slice(s, s + 2));
|
|
320
|
+
return c ? (e.H = +c[0], s + c[0].length) : -1;
|
|
321
|
+
}
|
|
322
|
+
function parseMinutes(e, o, s) {
|
|
323
|
+
var c = numberRe.exec(o.slice(s, s + 2));
|
|
324
|
+
return c ? (e.M = +c[0], s + c[0].length) : -1;
|
|
325
|
+
}
|
|
326
|
+
function parseSeconds(e, o, s) {
|
|
327
|
+
var c = numberRe.exec(o.slice(s, s + 2));
|
|
328
|
+
return c ? (e.S = +c[0], s + c[0].length) : -1;
|
|
329
|
+
}
|
|
330
|
+
function parseMilliseconds(e, o, s) {
|
|
331
|
+
var c = numberRe.exec(o.slice(s, s + 3));
|
|
332
|
+
return c ? (e.L = +c[0], s + c[0].length) : -1;
|
|
333
|
+
}
|
|
334
|
+
function parseMicroseconds(e, o, s) {
|
|
335
|
+
var c = numberRe.exec(o.slice(s, s + 6));
|
|
336
|
+
return c ? (e.L = Math.floor(c[0] / 1e3), s + c[0].length) : -1;
|
|
337
|
+
}
|
|
338
|
+
function parseLiteralPercent(e, o, s) {
|
|
339
|
+
var c = percentRe.exec(o.slice(s, s + 1));
|
|
340
|
+
return c ? s + c[0].length : -1;
|
|
341
|
+
}
|
|
342
|
+
function parseUnixTimestamp(e, o, s) {
|
|
343
|
+
var c = numberRe.exec(o.slice(s));
|
|
344
|
+
return c ? (e.Q = +c[0], s + c[0].length) : -1;
|
|
345
|
+
}
|
|
346
|
+
function parseUnixTimestampSeconds(e, o, s) {
|
|
347
|
+
var c = numberRe.exec(o.slice(s));
|
|
348
|
+
return c ? (e.s = +c[0], s + c[0].length) : -1;
|
|
349
|
+
}
|
|
350
|
+
function formatDayOfMonth(e, o) {
|
|
351
|
+
return pad(e.getDate(), o, 2);
|
|
352
|
+
}
|
|
353
|
+
function formatHour24(e, o) {
|
|
354
|
+
return pad(e.getHours(), o, 2);
|
|
355
|
+
}
|
|
356
|
+
function formatHour12(e, o) {
|
|
357
|
+
return pad(e.getHours() % 12 || 12, o, 2);
|
|
358
|
+
}
|
|
359
|
+
function formatDayOfYear(o, s) {
|
|
360
|
+
return pad(1 + timeDay.count(timeYear(o), o), s, 3);
|
|
361
|
+
}
|
|
362
|
+
function formatMilliseconds(e, o) {
|
|
363
|
+
return pad(e.getMilliseconds(), o, 3);
|
|
364
|
+
}
|
|
365
|
+
function formatMicroseconds(e, o) {
|
|
366
|
+
return formatMilliseconds(e, o) + "000";
|
|
367
|
+
}
|
|
368
|
+
function formatMonthNumber(e, o) {
|
|
369
|
+
return pad(e.getMonth() + 1, o, 2);
|
|
370
|
+
}
|
|
371
|
+
function formatMinutes(e, o) {
|
|
372
|
+
return pad(e.getMinutes(), o, 2);
|
|
373
|
+
}
|
|
374
|
+
function formatSeconds(e, o) {
|
|
375
|
+
return pad(e.getSeconds(), o, 2);
|
|
376
|
+
}
|
|
377
|
+
function formatWeekdayNumberMonday(e) {
|
|
378
|
+
var o = e.getDay();
|
|
379
|
+
return o === 0 ? 7 : o;
|
|
380
|
+
}
|
|
381
|
+
function formatWeekNumberSunday(e, o) {
|
|
382
|
+
return pad(timeSunday.count(timeYear(e) - 1, e), o, 2);
|
|
383
|
+
}
|
|
384
|
+
function dISO(e) {
|
|
385
|
+
var o = e.getDay();
|
|
386
|
+
return o >= 4 || o === 0 ? timeThursday(e) : timeThursday.ceil(e);
|
|
387
|
+
}
|
|
388
|
+
function formatWeekNumberISO(e, o) {
|
|
389
|
+
return e = dISO(e), pad(timeThursday.count(timeYear(e), e) + (timeYear(e).getDay() === 4), o, 2);
|
|
390
|
+
}
|
|
391
|
+
function formatWeekdayNumberSunday(e) {
|
|
392
|
+
return e.getDay();
|
|
393
|
+
}
|
|
394
|
+
function formatWeekNumberMonday(e, o) {
|
|
395
|
+
return pad(timeMonday.count(timeYear(e) - 1, e), o, 2);
|
|
396
|
+
}
|
|
397
|
+
function formatYear(e, o) {
|
|
398
|
+
return pad(e.getFullYear() % 100, o, 2);
|
|
399
|
+
}
|
|
400
|
+
function formatYearISO(e, o) {
|
|
401
|
+
return e = dISO(e), pad(e.getFullYear() % 100, o, 2);
|
|
402
|
+
}
|
|
403
|
+
function formatFullYear(e, o) {
|
|
404
|
+
return pad(e.getFullYear() % 1e4, o, 4);
|
|
405
|
+
}
|
|
406
|
+
function formatFullYearISO(e, o) {
|
|
407
|
+
var s = e.getDay();
|
|
408
|
+
return e = s >= 4 || s === 0 ? timeThursday(e) : timeThursday.ceil(e), pad(e.getFullYear() % 1e4, o, 4);
|
|
409
|
+
}
|
|
410
|
+
function formatZone(e) {
|
|
411
|
+
var o = e.getTimezoneOffset();
|
|
412
|
+
return (o > 0 ? "-" : (o *= -1, "+")) + pad(o / 60 | 0, "0", 2) + pad(o % 60, "0", 2);
|
|
413
|
+
}
|
|
414
|
+
function formatUTCDayOfMonth(e, o) {
|
|
415
|
+
return pad(e.getUTCDate(), o, 2);
|
|
416
|
+
}
|
|
417
|
+
function formatUTCHour24(e, o) {
|
|
418
|
+
return pad(e.getUTCHours(), o, 2);
|
|
419
|
+
}
|
|
420
|
+
function formatUTCHour12(e, o) {
|
|
421
|
+
return pad(e.getUTCHours() % 12 || 12, o, 2);
|
|
422
|
+
}
|
|
423
|
+
function formatUTCDayOfYear(e, s) {
|
|
424
|
+
return pad(1 + utcDay.count(utcYear(e), e), s, 3);
|
|
425
|
+
}
|
|
426
|
+
function formatUTCMilliseconds(e, o) {
|
|
427
|
+
return pad(e.getUTCMilliseconds(), o, 3);
|
|
428
|
+
}
|
|
429
|
+
function formatUTCMicroseconds(e, o) {
|
|
430
|
+
return formatUTCMilliseconds(e, o) + "000";
|
|
431
|
+
}
|
|
432
|
+
function formatUTCMonthNumber(e, o) {
|
|
433
|
+
return pad(e.getUTCMonth() + 1, o, 2);
|
|
434
|
+
}
|
|
435
|
+
function formatUTCMinutes(e, o) {
|
|
436
|
+
return pad(e.getUTCMinutes(), o, 2);
|
|
437
|
+
}
|
|
438
|
+
function formatUTCSeconds(e, o) {
|
|
439
|
+
return pad(e.getUTCSeconds(), o, 2);
|
|
440
|
+
}
|
|
441
|
+
function formatUTCWeekdayNumberMonday(e) {
|
|
442
|
+
var o = e.getUTCDay();
|
|
443
|
+
return o === 0 ? 7 : o;
|
|
444
|
+
}
|
|
445
|
+
function formatUTCWeekNumberSunday(e, o) {
|
|
446
|
+
return pad(utcSunday.count(utcYear(e) - 1, e), o, 2);
|
|
447
|
+
}
|
|
448
|
+
function UTCdISO(e) {
|
|
449
|
+
var o = e.getUTCDay();
|
|
450
|
+
return o >= 4 || o === 0 ? utcThursday(e) : utcThursday.ceil(e);
|
|
451
|
+
}
|
|
452
|
+
function formatUTCWeekNumberISO(e, o) {
|
|
453
|
+
return e = UTCdISO(e), pad(utcThursday.count(utcYear(e), e) + (utcYear(e).getUTCDay() === 4), o, 2);
|
|
454
|
+
}
|
|
455
|
+
function formatUTCWeekdayNumberSunday(e) {
|
|
456
|
+
return e.getUTCDay();
|
|
457
|
+
}
|
|
458
|
+
function formatUTCWeekNumberMonday(e, o) {
|
|
459
|
+
return pad(utcMonday.count(utcYear(e) - 1, e), o, 2);
|
|
460
|
+
}
|
|
461
|
+
function formatUTCYear(e, o) {
|
|
462
|
+
return pad(e.getUTCFullYear() % 100, o, 2);
|
|
463
|
+
}
|
|
464
|
+
function formatUTCYearISO(e, o) {
|
|
465
|
+
return e = UTCdISO(e), pad(e.getUTCFullYear() % 100, o, 2);
|
|
466
|
+
}
|
|
467
|
+
function formatUTCFullYear(e, o) {
|
|
468
|
+
return pad(e.getUTCFullYear() % 1e4, o, 4);
|
|
469
|
+
}
|
|
470
|
+
function formatUTCFullYearISO(e, o) {
|
|
471
|
+
var s = e.getUTCDay();
|
|
472
|
+
return e = s >= 4 || s === 0 ? utcThursday(e) : utcThursday.ceil(e), pad(e.getUTCFullYear() % 1e4, o, 4);
|
|
473
|
+
}
|
|
474
|
+
function formatUTCZone() {
|
|
475
|
+
return "+0000";
|
|
476
|
+
}
|
|
477
|
+
function formatLiteralPercent() {
|
|
478
|
+
return "%";
|
|
479
|
+
}
|
|
480
|
+
function formatUnixTimestamp(e) {
|
|
481
|
+
return +e;
|
|
482
|
+
}
|
|
483
|
+
function formatUnixTimestampSeconds(e) {
|
|
484
|
+
return Math.floor(e / 1e3);
|
|
485
|
+
}
|
|
486
|
+
export { formatLocale as default };
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
var frame = 0, timeout = 0, interval = 0, pokeDelay = 1e3, taskHead, taskTail, clockLast = 0, clockNow = 0, clockSkew = 0, clock = typeof performance == "object" && performance.now ? performance : Date, setFrame = typeof window == "object" && window.requestAnimationFrame ? window.requestAnimationFrame.bind(window) : function(e) {
|
|
2
|
+
setTimeout(e, 17);
|
|
3
|
+
};
|
|
4
|
+
function now() {
|
|
5
|
+
return clockNow ||= (setFrame(clearNow), clock.now() + clockSkew);
|
|
6
|
+
}
|
|
7
|
+
function clearNow() {
|
|
8
|
+
clockNow = 0;
|
|
9
|
+
}
|
|
10
|
+
function Timer() {
|
|
11
|
+
this._call = this._time = this._next = null;
|
|
12
|
+
}
|
|
13
|
+
Timer.prototype = timer.prototype = {
|
|
14
|
+
constructor: Timer,
|
|
15
|
+
restart: function(e, g, _) {
|
|
16
|
+
if (typeof e != "function") throw TypeError("callback is not a function");
|
|
17
|
+
_ = (_ == null ? now() : +_) + (g == null ? 0 : +g), !this._next && taskTail !== this && (taskTail ? taskTail._next = this : taskHead = this, taskTail = this), this._call = e, this._time = _, sleep();
|
|
18
|
+
},
|
|
19
|
+
stop: function() {
|
|
20
|
+
this._call && (this._call = null, this._time = Infinity, sleep());
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
function timer(e, g, _) {
|
|
24
|
+
var v = new Timer();
|
|
25
|
+
return v.restart(e, g, _), v;
|
|
26
|
+
}
|
|
27
|
+
function timerFlush() {
|
|
28
|
+
now(), ++frame;
|
|
29
|
+
for (var g = taskHead, _; g;) (_ = clockNow - g._time) >= 0 && g._call.call(void 0, _), g = g._next;
|
|
30
|
+
--frame;
|
|
31
|
+
}
|
|
32
|
+
function wake() {
|
|
33
|
+
clockNow = (clockLast = clock.now()) + clockSkew, frame = timeout = 0;
|
|
34
|
+
try {
|
|
35
|
+
timerFlush();
|
|
36
|
+
} finally {
|
|
37
|
+
frame = 0, nap(), clockNow = 0;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
function poke() {
|
|
41
|
+
var e = clock.now(), g = e - clockLast;
|
|
42
|
+
g > pokeDelay && (clockSkew -= g, clockLast = e);
|
|
43
|
+
}
|
|
44
|
+
function nap() {
|
|
45
|
+
for (var e, g = taskHead, _, v = Infinity; g;) g._call ? (v > g._time && (v = g._time), e = g, g = g._next) : (_ = g._next, g._next = null, g = e ? e._next = _ : taskHead = _);
|
|
46
|
+
taskTail = e, sleep(v);
|
|
47
|
+
}
|
|
48
|
+
function sleep(y) {
|
|
49
|
+
frame || (timeout &&= clearTimeout(timeout), y - clockNow > 24 ? (y < Infinity && (timeout = setTimeout(wake, y - clock.now() - clockSkew)), interval &&= clearInterval(interval)) : (interval ||= (clockLast = clock.now(), setInterval(poke, pokeDelay)), frame = 1, setFrame(wake)));
|
|
50
|
+
}
|
|
51
|
+
export { Timer, now, timer, timerFlush };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ENDED, ENDING, STARTING } from "./transition/schedule.js";
|
|
2
|
+
function interrupt_default(e, t) {
|
|
3
|
+
var n = e.__transition, r, i, a = !0, o;
|
|
4
|
+
if (n) {
|
|
5
|
+
for (o in t = t == null ? null : t + "", n) {
|
|
6
|
+
if ((r = n[o]).name !== t) {
|
|
7
|
+
a = !1;
|
|
8
|
+
continue;
|
|
9
|
+
}
|
|
10
|
+
i = r.state > 2 && r.state < 5, r.state = 6, r.timer.stop(), r.on.call(i ? "interrupt" : "cancel", e, e.__data__, r.index, r.group), delete n[o];
|
|
11
|
+
}
|
|
12
|
+
a && delete e.__transition;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
export { interrupt_default as default };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import selection_default from "../../../d3-selection/src/selection/index.js";
|
|
2
|
+
import interrupt_default from "./interrupt.js";
|
|
3
|
+
import transition_default from "./transition.js";
|
|
4
|
+
selection_default.prototype.interrupt = interrupt_default, selection_default.prototype.transition = transition_default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { now } from "../../../d3-timer/src/timer.js";
|
|
2
|
+
import schedule_default from "../transition/schedule.js";
|
|
3
|
+
import { Transition, newId } from "../transition/index.js";
|
|
4
|
+
import { cubicInOut } from "../../../d3-ease/src/cubic.js";
|
|
5
|
+
var defaultTiming = {
|
|
6
|
+
time: null,
|
|
7
|
+
delay: 0,
|
|
8
|
+
duration: 250,
|
|
9
|
+
ease: cubicInOut
|
|
10
|
+
};
|
|
11
|
+
function inherit(e, i) {
|
|
12
|
+
for (var a; !(a = e.__transition) || !(a = a[i]);) if (!(e = e.parentNode)) throw Error(`transition ${i} not found`);
|
|
13
|
+
return a;
|
|
14
|
+
}
|
|
15
|
+
function transition_default(o) {
|
|
16
|
+
var s, c;
|
|
17
|
+
o instanceof Transition ? (s = o._id, o = o._name) : (s = newId(), (c = defaultTiming).time = now(), o = o == null ? null : o + "");
|
|
18
|
+
for (var l = this._groups, u = l.length, d = 0; d < u; ++d) for (var f = l[d], p = f.length, m, h = 0; h < p; ++h) (m = f[h]) && schedule_default(m, o, s, h, f, c || inherit(m, s));
|
|
19
|
+
return new Transition(l, this._parents, o, s);
|
|
20
|
+
}
|
|
21
|
+
export { transition_default as default };
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import namespace_default from "../../../d3-selection/src/namespace.js";
|
|
2
|
+
import { interpolateTransformSvg } from "../../../d3-interpolate/src/transform/index.js";
|
|
3
|
+
import { tweenValue } from "./tween.js";
|
|
4
|
+
import interpolate_default from "./interpolate.js";
|
|
5
|
+
function attrRemove(e) {
|
|
6
|
+
return function() {
|
|
7
|
+
this.removeAttribute(e);
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
function attrRemoveNS(e) {
|
|
11
|
+
return function() {
|
|
12
|
+
this.removeAttributeNS(e.space, e.local);
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
function attrConstant(e, n, r) {
|
|
16
|
+
var i, a = r + "", o;
|
|
17
|
+
return function() {
|
|
18
|
+
var s = this.getAttribute(e);
|
|
19
|
+
return s === a ? null : s === i ? o : o = n(i = s, r);
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
function attrConstantNS(e, n, r) {
|
|
23
|
+
var i, a = r + "", o;
|
|
24
|
+
return function() {
|
|
25
|
+
var s = this.getAttributeNS(e.space, e.local);
|
|
26
|
+
return s === a ? null : s === i ? o : o = n(i = s, r);
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
function attrFunction(e, n, r) {
|
|
30
|
+
var i, a, o;
|
|
31
|
+
return function() {
|
|
32
|
+
var s, c = r(this), l;
|
|
33
|
+
return c == null ? void this.removeAttribute(e) : (s = this.getAttribute(e), l = c + "", s === l ? null : s === i && l === a ? o : (a = l, o = n(i = s, c)));
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
function attrFunctionNS(e, n, r) {
|
|
37
|
+
var i, a, o;
|
|
38
|
+
return function() {
|
|
39
|
+
var s, c = r(this), l;
|
|
40
|
+
return c == null ? void this.removeAttributeNS(e.space, e.local) : (s = this.getAttributeNS(e.space, e.local), l = c + "", s === l ? null : s === i && l === a ? o : (a = l, o = n(i = s, c)));
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function attr_default(u, d) {
|
|
44
|
+
var f = namespace_default(u), p = f === "transform" ? interpolateTransformSvg : interpolate_default;
|
|
45
|
+
return this.attrTween(u, typeof d == "function" ? (f.local ? attrFunctionNS : attrFunction)(f, p, tweenValue(this, "attr." + u, d)) : d == null ? (f.local ? attrRemoveNS : attrRemove)(f) : (f.local ? attrConstantNS : attrConstant)(f, p, d));
|
|
46
|
+
}
|
|
47
|
+
export { attr_default as default };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import namespace_default from "../../../d3-selection/src/namespace.js";
|
|
2
|
+
function attrInterpolate(e, t) {
|
|
3
|
+
return function(n) {
|
|
4
|
+
this.setAttribute(e, t.call(this, n));
|
|
5
|
+
};
|
|
6
|
+
}
|
|
7
|
+
function attrInterpolateNS(e, t) {
|
|
8
|
+
return function(n) {
|
|
9
|
+
this.setAttributeNS(e.space, e.local, t.call(this, n));
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
function attrTweenNS(e, t) {
|
|
13
|
+
var r, i;
|
|
14
|
+
function a() {
|
|
15
|
+
var a = t.apply(this, arguments);
|
|
16
|
+
return a !== i && (r = (i = a) && attrInterpolateNS(e, a)), r;
|
|
17
|
+
}
|
|
18
|
+
return a._value = t, a;
|
|
19
|
+
}
|
|
20
|
+
function attrTween(e, n) {
|
|
21
|
+
var r, i;
|
|
22
|
+
function a() {
|
|
23
|
+
var a = n.apply(this, arguments);
|
|
24
|
+
return a !== i && (r = (i = a) && attrInterpolate(e, a)), r;
|
|
25
|
+
}
|
|
26
|
+
return a._value = n, a;
|
|
27
|
+
}
|
|
28
|
+
function attrTween_default(t, n) {
|
|
29
|
+
var a = "attr." + t;
|
|
30
|
+
if (arguments.length < 2) return (a = this.tween(a)) && a._value;
|
|
31
|
+
if (n == null) return this.tween(a, null);
|
|
32
|
+
if (typeof n != "function") throw Error();
|
|
33
|
+
var o = namespace_default(t);
|
|
34
|
+
return this.tween(a, (o.local ? attrTweenNS : attrTween)(o, n));
|
|
35
|
+
}
|
|
36
|
+
export { attrTween_default as default };
|