@loopstack/loopstack-studio 0.20.3 → 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,1970 @@
|
|
|
1
|
+
import { __name, log } from "./chunk-AGHRB4JF.js";
|
|
2
|
+
import { clear, configureSvgSize, defaultConfig_default, getAccDescription, getAccTitle, getConfig2, getDiagramTitle, getThemeVariables3, sanitizeText, setAccDescription, setAccTitle, setDiagramTitle } from "./chunk-ABZYJK2D.js";
|
|
3
|
+
import select_default from "../../../../d3-selection/src/select.js";
|
|
4
|
+
import linear from "../../../../d3-scale/src/linear.js";
|
|
5
|
+
import "../../../../d3/src/index.js";
|
|
6
|
+
var parser = (function() {
|
|
7
|
+
var t = /* @__PURE__ */ __name(function(e, t, n, r) {
|
|
8
|
+
for (n ||= {}, r = e.length; r--; n[e[r]] = t);
|
|
9
|
+
return n;
|
|
10
|
+
}, "o"), n = [1, 3], r = [1, 4], i = [1, 5], a = [1, 6], o = [1, 7], s = [
|
|
11
|
+
1,
|
|
12
|
+
4,
|
|
13
|
+
5,
|
|
14
|
+
10,
|
|
15
|
+
12,
|
|
16
|
+
13,
|
|
17
|
+
14,
|
|
18
|
+
18,
|
|
19
|
+
25,
|
|
20
|
+
35,
|
|
21
|
+
37,
|
|
22
|
+
39,
|
|
23
|
+
41,
|
|
24
|
+
42,
|
|
25
|
+
48,
|
|
26
|
+
50,
|
|
27
|
+
51,
|
|
28
|
+
52,
|
|
29
|
+
53,
|
|
30
|
+
54,
|
|
31
|
+
55,
|
|
32
|
+
56,
|
|
33
|
+
57,
|
|
34
|
+
60,
|
|
35
|
+
61,
|
|
36
|
+
63,
|
|
37
|
+
64,
|
|
38
|
+
65,
|
|
39
|
+
66,
|
|
40
|
+
67
|
|
41
|
+
], c = [
|
|
42
|
+
1,
|
|
43
|
+
4,
|
|
44
|
+
5,
|
|
45
|
+
10,
|
|
46
|
+
12,
|
|
47
|
+
13,
|
|
48
|
+
14,
|
|
49
|
+
18,
|
|
50
|
+
25,
|
|
51
|
+
28,
|
|
52
|
+
35,
|
|
53
|
+
37,
|
|
54
|
+
39,
|
|
55
|
+
41,
|
|
56
|
+
42,
|
|
57
|
+
48,
|
|
58
|
+
50,
|
|
59
|
+
51,
|
|
60
|
+
52,
|
|
61
|
+
53,
|
|
62
|
+
54,
|
|
63
|
+
55,
|
|
64
|
+
56,
|
|
65
|
+
57,
|
|
66
|
+
60,
|
|
67
|
+
61,
|
|
68
|
+
63,
|
|
69
|
+
64,
|
|
70
|
+
65,
|
|
71
|
+
66,
|
|
72
|
+
67
|
|
73
|
+
], l = [
|
|
74
|
+
55,
|
|
75
|
+
56,
|
|
76
|
+
57
|
|
77
|
+
], u = [2, 36], d = [1, 37], f = [1, 36], p = [1, 38], m = [1, 35], h = [1, 43], g = [1, 41], _ = [1, 14], v = [1, 23], y = [1, 18], b = [1, 19], x = [1, 20], S = [1, 21], C = [1, 22], w = [1, 24], T = [1, 25], E = [1, 26], D = [1, 27], O = [1, 28], k = [1, 29], A = [1, 32], j = [1, 33], M = [1, 34], N = [1, 39], P = [1, 40], F = [1, 42], I = [1, 44], L = [1, 62], R = [1, 61], z = [
|
|
78
|
+
4,
|
|
79
|
+
5,
|
|
80
|
+
8,
|
|
81
|
+
10,
|
|
82
|
+
12,
|
|
83
|
+
13,
|
|
84
|
+
14,
|
|
85
|
+
18,
|
|
86
|
+
44,
|
|
87
|
+
47,
|
|
88
|
+
49,
|
|
89
|
+
55,
|
|
90
|
+
56,
|
|
91
|
+
57,
|
|
92
|
+
63,
|
|
93
|
+
64,
|
|
94
|
+
65,
|
|
95
|
+
66,
|
|
96
|
+
67
|
|
97
|
+
], ee = [1, 65], te = [1, 66], ne = [1, 67], re = [1, 68], ie = [1, 69], ae = [1, 70], oe = [1, 71], se = [1, 72], ce = [1, 73], le = [1, 74], ue = [1, 75], de = [1, 76], B = [
|
|
98
|
+
4,
|
|
99
|
+
5,
|
|
100
|
+
6,
|
|
101
|
+
7,
|
|
102
|
+
8,
|
|
103
|
+
9,
|
|
104
|
+
10,
|
|
105
|
+
11,
|
|
106
|
+
12,
|
|
107
|
+
13,
|
|
108
|
+
14,
|
|
109
|
+
15,
|
|
110
|
+
18
|
|
111
|
+
], V = [1, 90], H = [1, 91], U = [1, 92], W = [1, 99], G = [1, 93], K = [1, 96], q = [1, 94], J = [1, 95], Y = [1, 97], X = [1, 98], Z = [1, 102], fe = [
|
|
112
|
+
10,
|
|
113
|
+
55,
|
|
114
|
+
56,
|
|
115
|
+
57
|
|
116
|
+
], Q = [
|
|
117
|
+
4,
|
|
118
|
+
5,
|
|
119
|
+
6,
|
|
120
|
+
8,
|
|
121
|
+
10,
|
|
122
|
+
11,
|
|
123
|
+
13,
|
|
124
|
+
17,
|
|
125
|
+
18,
|
|
126
|
+
19,
|
|
127
|
+
20,
|
|
128
|
+
55,
|
|
129
|
+
56,
|
|
130
|
+
57
|
|
131
|
+
], pe = {
|
|
132
|
+
trace: /* @__PURE__ */ __name(function() {}, "trace"),
|
|
133
|
+
yy: {},
|
|
134
|
+
symbols_: {
|
|
135
|
+
error: 2,
|
|
136
|
+
idStringToken: 3,
|
|
137
|
+
ALPHA: 4,
|
|
138
|
+
NUM: 5,
|
|
139
|
+
NODE_STRING: 6,
|
|
140
|
+
DOWN: 7,
|
|
141
|
+
MINUS: 8,
|
|
142
|
+
DEFAULT: 9,
|
|
143
|
+
COMMA: 10,
|
|
144
|
+
COLON: 11,
|
|
145
|
+
AMP: 12,
|
|
146
|
+
BRKT: 13,
|
|
147
|
+
MULT: 14,
|
|
148
|
+
UNICODE_TEXT: 15,
|
|
149
|
+
styleComponent: 16,
|
|
150
|
+
UNIT: 17,
|
|
151
|
+
SPACE: 18,
|
|
152
|
+
STYLE: 19,
|
|
153
|
+
PCT: 20,
|
|
154
|
+
idString: 21,
|
|
155
|
+
style: 22,
|
|
156
|
+
stylesOpt: 23,
|
|
157
|
+
classDefStatement: 24,
|
|
158
|
+
CLASSDEF: 25,
|
|
159
|
+
start: 26,
|
|
160
|
+
eol: 27,
|
|
161
|
+
QUADRANT: 28,
|
|
162
|
+
document: 29,
|
|
163
|
+
line: 30,
|
|
164
|
+
statement: 31,
|
|
165
|
+
axisDetails: 32,
|
|
166
|
+
quadrantDetails: 33,
|
|
167
|
+
points: 34,
|
|
168
|
+
title: 35,
|
|
169
|
+
title_value: 36,
|
|
170
|
+
acc_title: 37,
|
|
171
|
+
acc_title_value: 38,
|
|
172
|
+
acc_descr: 39,
|
|
173
|
+
acc_descr_value: 40,
|
|
174
|
+
acc_descr_multiline_value: 41,
|
|
175
|
+
section: 42,
|
|
176
|
+
text: 43,
|
|
177
|
+
point_start: 44,
|
|
178
|
+
point_x: 45,
|
|
179
|
+
point_y: 46,
|
|
180
|
+
class_name: 47,
|
|
181
|
+
"X-AXIS": 48,
|
|
182
|
+
"AXIS-TEXT-DELIMITER": 49,
|
|
183
|
+
"Y-AXIS": 50,
|
|
184
|
+
QUADRANT_1: 51,
|
|
185
|
+
QUADRANT_2: 52,
|
|
186
|
+
QUADRANT_3: 53,
|
|
187
|
+
QUADRANT_4: 54,
|
|
188
|
+
NEWLINE: 55,
|
|
189
|
+
SEMI: 56,
|
|
190
|
+
EOF: 57,
|
|
191
|
+
alphaNumToken: 58,
|
|
192
|
+
textNoTagsToken: 59,
|
|
193
|
+
STR: 60,
|
|
194
|
+
MD_STR: 61,
|
|
195
|
+
alphaNum: 62,
|
|
196
|
+
PUNCTUATION: 63,
|
|
197
|
+
PLUS: 64,
|
|
198
|
+
EQUALS: 65,
|
|
199
|
+
DOT: 66,
|
|
200
|
+
UNDERSCORE: 67,
|
|
201
|
+
$accept: 0,
|
|
202
|
+
$end: 1
|
|
203
|
+
},
|
|
204
|
+
terminals_: {
|
|
205
|
+
2: "error",
|
|
206
|
+
4: "ALPHA",
|
|
207
|
+
5: "NUM",
|
|
208
|
+
6: "NODE_STRING",
|
|
209
|
+
7: "DOWN",
|
|
210
|
+
8: "MINUS",
|
|
211
|
+
9: "DEFAULT",
|
|
212
|
+
10: "COMMA",
|
|
213
|
+
11: "COLON",
|
|
214
|
+
12: "AMP",
|
|
215
|
+
13: "BRKT",
|
|
216
|
+
14: "MULT",
|
|
217
|
+
15: "UNICODE_TEXT",
|
|
218
|
+
17: "UNIT",
|
|
219
|
+
18: "SPACE",
|
|
220
|
+
19: "STYLE",
|
|
221
|
+
20: "PCT",
|
|
222
|
+
25: "CLASSDEF",
|
|
223
|
+
28: "QUADRANT",
|
|
224
|
+
35: "title",
|
|
225
|
+
36: "title_value",
|
|
226
|
+
37: "acc_title",
|
|
227
|
+
38: "acc_title_value",
|
|
228
|
+
39: "acc_descr",
|
|
229
|
+
40: "acc_descr_value",
|
|
230
|
+
41: "acc_descr_multiline_value",
|
|
231
|
+
42: "section",
|
|
232
|
+
44: "point_start",
|
|
233
|
+
45: "point_x",
|
|
234
|
+
46: "point_y",
|
|
235
|
+
47: "class_name",
|
|
236
|
+
48: "X-AXIS",
|
|
237
|
+
49: "AXIS-TEXT-DELIMITER",
|
|
238
|
+
50: "Y-AXIS",
|
|
239
|
+
51: "QUADRANT_1",
|
|
240
|
+
52: "QUADRANT_2",
|
|
241
|
+
53: "QUADRANT_3",
|
|
242
|
+
54: "QUADRANT_4",
|
|
243
|
+
55: "NEWLINE",
|
|
244
|
+
56: "SEMI",
|
|
245
|
+
57: "EOF",
|
|
246
|
+
60: "STR",
|
|
247
|
+
61: "MD_STR",
|
|
248
|
+
63: "PUNCTUATION",
|
|
249
|
+
64: "PLUS",
|
|
250
|
+
65: "EQUALS",
|
|
251
|
+
66: "DOT",
|
|
252
|
+
67: "UNDERSCORE"
|
|
253
|
+
},
|
|
254
|
+
productions_: [
|
|
255
|
+
0,
|
|
256
|
+
[3, 1],
|
|
257
|
+
[3, 1],
|
|
258
|
+
[3, 1],
|
|
259
|
+
[3, 1],
|
|
260
|
+
[3, 1],
|
|
261
|
+
[3, 1],
|
|
262
|
+
[3, 1],
|
|
263
|
+
[3, 1],
|
|
264
|
+
[3, 1],
|
|
265
|
+
[3, 1],
|
|
266
|
+
[3, 1],
|
|
267
|
+
[3, 1],
|
|
268
|
+
[16, 1],
|
|
269
|
+
[16, 1],
|
|
270
|
+
[16, 1],
|
|
271
|
+
[16, 1],
|
|
272
|
+
[16, 1],
|
|
273
|
+
[16, 1],
|
|
274
|
+
[16, 1],
|
|
275
|
+
[16, 1],
|
|
276
|
+
[16, 1],
|
|
277
|
+
[16, 1],
|
|
278
|
+
[21, 1],
|
|
279
|
+
[21, 2],
|
|
280
|
+
[22, 1],
|
|
281
|
+
[22, 2],
|
|
282
|
+
[23, 1],
|
|
283
|
+
[23, 3],
|
|
284
|
+
[24, 5],
|
|
285
|
+
[26, 2],
|
|
286
|
+
[26, 2],
|
|
287
|
+
[26, 2],
|
|
288
|
+
[29, 0],
|
|
289
|
+
[29, 2],
|
|
290
|
+
[30, 2],
|
|
291
|
+
[31, 0],
|
|
292
|
+
[31, 1],
|
|
293
|
+
[31, 2],
|
|
294
|
+
[31, 1],
|
|
295
|
+
[31, 1],
|
|
296
|
+
[31, 1],
|
|
297
|
+
[31, 2],
|
|
298
|
+
[31, 2],
|
|
299
|
+
[31, 2],
|
|
300
|
+
[31, 1],
|
|
301
|
+
[31, 1],
|
|
302
|
+
[34, 4],
|
|
303
|
+
[34, 5],
|
|
304
|
+
[34, 5],
|
|
305
|
+
[34, 6],
|
|
306
|
+
[32, 4],
|
|
307
|
+
[32, 3],
|
|
308
|
+
[32, 2],
|
|
309
|
+
[32, 4],
|
|
310
|
+
[32, 3],
|
|
311
|
+
[32, 2],
|
|
312
|
+
[33, 2],
|
|
313
|
+
[33, 2],
|
|
314
|
+
[33, 2],
|
|
315
|
+
[33, 2],
|
|
316
|
+
[27, 1],
|
|
317
|
+
[27, 1],
|
|
318
|
+
[27, 1],
|
|
319
|
+
[43, 1],
|
|
320
|
+
[43, 2],
|
|
321
|
+
[43, 1],
|
|
322
|
+
[43, 1],
|
|
323
|
+
[62, 1],
|
|
324
|
+
[62, 2],
|
|
325
|
+
[58, 1],
|
|
326
|
+
[58, 1],
|
|
327
|
+
[58, 1],
|
|
328
|
+
[58, 1],
|
|
329
|
+
[58, 1],
|
|
330
|
+
[58, 1],
|
|
331
|
+
[58, 1],
|
|
332
|
+
[58, 1],
|
|
333
|
+
[58, 1],
|
|
334
|
+
[58, 1],
|
|
335
|
+
[58, 1],
|
|
336
|
+
[59, 1],
|
|
337
|
+
[59, 1],
|
|
338
|
+
[59, 1]
|
|
339
|
+
],
|
|
340
|
+
performAction: /* @__PURE__ */ __name(function(e, t, n, r, i, a, o) {
|
|
341
|
+
var s = a.length - 1;
|
|
342
|
+
switch (i) {
|
|
343
|
+
case 23:
|
|
344
|
+
this.$ = a[s];
|
|
345
|
+
break;
|
|
346
|
+
case 24:
|
|
347
|
+
this.$ = a[s - 1] + "" + a[s];
|
|
348
|
+
break;
|
|
349
|
+
case 26:
|
|
350
|
+
this.$ = a[s - 1] + a[s];
|
|
351
|
+
break;
|
|
352
|
+
case 27:
|
|
353
|
+
this.$ = [a[s].trim()];
|
|
354
|
+
break;
|
|
355
|
+
case 28:
|
|
356
|
+
a[s - 2].push(a[s].trim()), this.$ = a[s - 2];
|
|
357
|
+
break;
|
|
358
|
+
case 29:
|
|
359
|
+
this.$ = a[s - 4], r.addClass(a[s - 2], a[s]);
|
|
360
|
+
break;
|
|
361
|
+
case 37:
|
|
362
|
+
this.$ = [];
|
|
363
|
+
break;
|
|
364
|
+
case 42:
|
|
365
|
+
this.$ = a[s].trim(), r.setDiagramTitle(this.$);
|
|
366
|
+
break;
|
|
367
|
+
case 43:
|
|
368
|
+
this.$ = a[s].trim(), r.setAccTitle(this.$);
|
|
369
|
+
break;
|
|
370
|
+
case 44:
|
|
371
|
+
case 45:
|
|
372
|
+
this.$ = a[s].trim(), r.setAccDescription(this.$);
|
|
373
|
+
break;
|
|
374
|
+
case 46:
|
|
375
|
+
r.addSection(a[s].substr(8)), this.$ = a[s].substr(8);
|
|
376
|
+
break;
|
|
377
|
+
case 47:
|
|
378
|
+
r.addPoint(a[s - 3], "", a[s - 1], a[s], []);
|
|
379
|
+
break;
|
|
380
|
+
case 48:
|
|
381
|
+
r.addPoint(a[s - 4], a[s - 3], a[s - 1], a[s], []);
|
|
382
|
+
break;
|
|
383
|
+
case 49:
|
|
384
|
+
r.addPoint(a[s - 4], "", a[s - 2], a[s - 1], a[s]);
|
|
385
|
+
break;
|
|
386
|
+
case 50:
|
|
387
|
+
r.addPoint(a[s - 5], a[s - 4], a[s - 2], a[s - 1], a[s]);
|
|
388
|
+
break;
|
|
389
|
+
case 51:
|
|
390
|
+
r.setXAxisLeftText(a[s - 2]), r.setXAxisRightText(a[s]);
|
|
391
|
+
break;
|
|
392
|
+
case 52:
|
|
393
|
+
a[s - 1].text += " ⟶ ", r.setXAxisLeftText(a[s - 1]);
|
|
394
|
+
break;
|
|
395
|
+
case 53:
|
|
396
|
+
r.setXAxisLeftText(a[s]);
|
|
397
|
+
break;
|
|
398
|
+
case 54:
|
|
399
|
+
r.setYAxisBottomText(a[s - 2]), r.setYAxisTopText(a[s]);
|
|
400
|
+
break;
|
|
401
|
+
case 55:
|
|
402
|
+
a[s - 1].text += " ⟶ ", r.setYAxisBottomText(a[s - 1]);
|
|
403
|
+
break;
|
|
404
|
+
case 56:
|
|
405
|
+
r.setYAxisBottomText(a[s]);
|
|
406
|
+
break;
|
|
407
|
+
case 57:
|
|
408
|
+
r.setQuadrant1Text(a[s]);
|
|
409
|
+
break;
|
|
410
|
+
case 58:
|
|
411
|
+
r.setQuadrant2Text(a[s]);
|
|
412
|
+
break;
|
|
413
|
+
case 59:
|
|
414
|
+
r.setQuadrant3Text(a[s]);
|
|
415
|
+
break;
|
|
416
|
+
case 60:
|
|
417
|
+
r.setQuadrant4Text(a[s]);
|
|
418
|
+
break;
|
|
419
|
+
case 64:
|
|
420
|
+
this.$ = {
|
|
421
|
+
text: a[s],
|
|
422
|
+
type: "text"
|
|
423
|
+
};
|
|
424
|
+
break;
|
|
425
|
+
case 65:
|
|
426
|
+
this.$ = {
|
|
427
|
+
text: a[s - 1].text + "" + a[s],
|
|
428
|
+
type: a[s - 1].type
|
|
429
|
+
};
|
|
430
|
+
break;
|
|
431
|
+
case 66:
|
|
432
|
+
this.$ = {
|
|
433
|
+
text: a[s],
|
|
434
|
+
type: "text"
|
|
435
|
+
};
|
|
436
|
+
break;
|
|
437
|
+
case 67:
|
|
438
|
+
this.$ = {
|
|
439
|
+
text: a[s],
|
|
440
|
+
type: "markdown"
|
|
441
|
+
};
|
|
442
|
+
break;
|
|
443
|
+
case 68:
|
|
444
|
+
this.$ = a[s];
|
|
445
|
+
break;
|
|
446
|
+
case 69:
|
|
447
|
+
this.$ = a[s - 1] + "" + a[s];
|
|
448
|
+
break;
|
|
449
|
+
}
|
|
450
|
+
}, "anonymous"),
|
|
451
|
+
table: [
|
|
452
|
+
{
|
|
453
|
+
18: n,
|
|
454
|
+
26: 1,
|
|
455
|
+
27: 2,
|
|
456
|
+
28: r,
|
|
457
|
+
55: i,
|
|
458
|
+
56: a,
|
|
459
|
+
57: o
|
|
460
|
+
},
|
|
461
|
+
{ 1: [3] },
|
|
462
|
+
{
|
|
463
|
+
18: n,
|
|
464
|
+
26: 8,
|
|
465
|
+
27: 2,
|
|
466
|
+
28: r,
|
|
467
|
+
55: i,
|
|
468
|
+
56: a,
|
|
469
|
+
57: o
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
18: n,
|
|
473
|
+
26: 9,
|
|
474
|
+
27: 2,
|
|
475
|
+
28: r,
|
|
476
|
+
55: i,
|
|
477
|
+
56: a,
|
|
478
|
+
57: o
|
|
479
|
+
},
|
|
480
|
+
t(s, [2, 33], { 29: 10 }),
|
|
481
|
+
t(c, [2, 61]),
|
|
482
|
+
t(c, [2, 62]),
|
|
483
|
+
t(c, [2, 63]),
|
|
484
|
+
{ 1: [2, 30] },
|
|
485
|
+
{ 1: [2, 31] },
|
|
486
|
+
t(l, u, {
|
|
487
|
+
30: 11,
|
|
488
|
+
31: 12,
|
|
489
|
+
24: 13,
|
|
490
|
+
32: 15,
|
|
491
|
+
33: 16,
|
|
492
|
+
34: 17,
|
|
493
|
+
43: 30,
|
|
494
|
+
58: 31,
|
|
495
|
+
1: [2, 32],
|
|
496
|
+
4: d,
|
|
497
|
+
5: f,
|
|
498
|
+
10: p,
|
|
499
|
+
12: m,
|
|
500
|
+
13: h,
|
|
501
|
+
14: g,
|
|
502
|
+
18: _,
|
|
503
|
+
25: v,
|
|
504
|
+
35: y,
|
|
505
|
+
37: b,
|
|
506
|
+
39: x,
|
|
507
|
+
41: S,
|
|
508
|
+
42: C,
|
|
509
|
+
48: w,
|
|
510
|
+
50: T,
|
|
511
|
+
51: E,
|
|
512
|
+
52: D,
|
|
513
|
+
53: O,
|
|
514
|
+
54: k,
|
|
515
|
+
60: A,
|
|
516
|
+
61: j,
|
|
517
|
+
63: M,
|
|
518
|
+
64: N,
|
|
519
|
+
65: P,
|
|
520
|
+
66: F,
|
|
521
|
+
67: I
|
|
522
|
+
}),
|
|
523
|
+
t(s, [2, 34]),
|
|
524
|
+
{
|
|
525
|
+
27: 45,
|
|
526
|
+
55: i,
|
|
527
|
+
56: a,
|
|
528
|
+
57: o
|
|
529
|
+
},
|
|
530
|
+
t(l, [2, 37]),
|
|
531
|
+
t(l, u, {
|
|
532
|
+
24: 13,
|
|
533
|
+
32: 15,
|
|
534
|
+
33: 16,
|
|
535
|
+
34: 17,
|
|
536
|
+
43: 30,
|
|
537
|
+
58: 31,
|
|
538
|
+
31: 46,
|
|
539
|
+
4: d,
|
|
540
|
+
5: f,
|
|
541
|
+
10: p,
|
|
542
|
+
12: m,
|
|
543
|
+
13: h,
|
|
544
|
+
14: g,
|
|
545
|
+
18: _,
|
|
546
|
+
25: v,
|
|
547
|
+
35: y,
|
|
548
|
+
37: b,
|
|
549
|
+
39: x,
|
|
550
|
+
41: S,
|
|
551
|
+
42: C,
|
|
552
|
+
48: w,
|
|
553
|
+
50: T,
|
|
554
|
+
51: E,
|
|
555
|
+
52: D,
|
|
556
|
+
53: O,
|
|
557
|
+
54: k,
|
|
558
|
+
60: A,
|
|
559
|
+
61: j,
|
|
560
|
+
63: M,
|
|
561
|
+
64: N,
|
|
562
|
+
65: P,
|
|
563
|
+
66: F,
|
|
564
|
+
67: I
|
|
565
|
+
}),
|
|
566
|
+
t(l, [2, 39]),
|
|
567
|
+
t(l, [2, 40]),
|
|
568
|
+
t(l, [2, 41]),
|
|
569
|
+
{ 36: [1, 47] },
|
|
570
|
+
{ 38: [1, 48] },
|
|
571
|
+
{ 40: [1, 49] },
|
|
572
|
+
t(l, [2, 45]),
|
|
573
|
+
t(l, [2, 46]),
|
|
574
|
+
{ 18: [1, 50] },
|
|
575
|
+
{
|
|
576
|
+
4: d,
|
|
577
|
+
5: f,
|
|
578
|
+
10: p,
|
|
579
|
+
12: m,
|
|
580
|
+
13: h,
|
|
581
|
+
14: g,
|
|
582
|
+
43: 51,
|
|
583
|
+
58: 31,
|
|
584
|
+
60: A,
|
|
585
|
+
61: j,
|
|
586
|
+
63: M,
|
|
587
|
+
64: N,
|
|
588
|
+
65: P,
|
|
589
|
+
66: F,
|
|
590
|
+
67: I
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
4: d,
|
|
594
|
+
5: f,
|
|
595
|
+
10: p,
|
|
596
|
+
12: m,
|
|
597
|
+
13: h,
|
|
598
|
+
14: g,
|
|
599
|
+
43: 52,
|
|
600
|
+
58: 31,
|
|
601
|
+
60: A,
|
|
602
|
+
61: j,
|
|
603
|
+
63: M,
|
|
604
|
+
64: N,
|
|
605
|
+
65: P,
|
|
606
|
+
66: F,
|
|
607
|
+
67: I
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
4: d,
|
|
611
|
+
5: f,
|
|
612
|
+
10: p,
|
|
613
|
+
12: m,
|
|
614
|
+
13: h,
|
|
615
|
+
14: g,
|
|
616
|
+
43: 53,
|
|
617
|
+
58: 31,
|
|
618
|
+
60: A,
|
|
619
|
+
61: j,
|
|
620
|
+
63: M,
|
|
621
|
+
64: N,
|
|
622
|
+
65: P,
|
|
623
|
+
66: F,
|
|
624
|
+
67: I
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
4: d,
|
|
628
|
+
5: f,
|
|
629
|
+
10: p,
|
|
630
|
+
12: m,
|
|
631
|
+
13: h,
|
|
632
|
+
14: g,
|
|
633
|
+
43: 54,
|
|
634
|
+
58: 31,
|
|
635
|
+
60: A,
|
|
636
|
+
61: j,
|
|
637
|
+
63: M,
|
|
638
|
+
64: N,
|
|
639
|
+
65: P,
|
|
640
|
+
66: F,
|
|
641
|
+
67: I
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
4: d,
|
|
645
|
+
5: f,
|
|
646
|
+
10: p,
|
|
647
|
+
12: m,
|
|
648
|
+
13: h,
|
|
649
|
+
14: g,
|
|
650
|
+
43: 55,
|
|
651
|
+
58: 31,
|
|
652
|
+
60: A,
|
|
653
|
+
61: j,
|
|
654
|
+
63: M,
|
|
655
|
+
64: N,
|
|
656
|
+
65: P,
|
|
657
|
+
66: F,
|
|
658
|
+
67: I
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
4: d,
|
|
662
|
+
5: f,
|
|
663
|
+
10: p,
|
|
664
|
+
12: m,
|
|
665
|
+
13: h,
|
|
666
|
+
14: g,
|
|
667
|
+
43: 56,
|
|
668
|
+
58: 31,
|
|
669
|
+
60: A,
|
|
670
|
+
61: j,
|
|
671
|
+
63: M,
|
|
672
|
+
64: N,
|
|
673
|
+
65: P,
|
|
674
|
+
66: F,
|
|
675
|
+
67: I
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
4: d,
|
|
679
|
+
5: f,
|
|
680
|
+
8: L,
|
|
681
|
+
10: p,
|
|
682
|
+
12: m,
|
|
683
|
+
13: h,
|
|
684
|
+
14: g,
|
|
685
|
+
18: R,
|
|
686
|
+
44: [1, 57],
|
|
687
|
+
47: [1, 58],
|
|
688
|
+
58: 60,
|
|
689
|
+
59: 59,
|
|
690
|
+
63: M,
|
|
691
|
+
64: N,
|
|
692
|
+
65: P,
|
|
693
|
+
66: F,
|
|
694
|
+
67: I
|
|
695
|
+
},
|
|
696
|
+
t(z, [2, 64]),
|
|
697
|
+
t(z, [2, 66]),
|
|
698
|
+
t(z, [2, 67]),
|
|
699
|
+
t(z, [2, 70]),
|
|
700
|
+
t(z, [2, 71]),
|
|
701
|
+
t(z, [2, 72]),
|
|
702
|
+
t(z, [2, 73]),
|
|
703
|
+
t(z, [2, 74]),
|
|
704
|
+
t(z, [2, 75]),
|
|
705
|
+
t(z, [2, 76]),
|
|
706
|
+
t(z, [2, 77]),
|
|
707
|
+
t(z, [2, 78]),
|
|
708
|
+
t(z, [2, 79]),
|
|
709
|
+
t(z, [2, 80]),
|
|
710
|
+
t(s, [2, 35]),
|
|
711
|
+
t(l, [2, 38]),
|
|
712
|
+
t(l, [2, 42]),
|
|
713
|
+
t(l, [2, 43]),
|
|
714
|
+
t(l, [2, 44]),
|
|
715
|
+
{
|
|
716
|
+
3: 64,
|
|
717
|
+
4: ee,
|
|
718
|
+
5: te,
|
|
719
|
+
6: ne,
|
|
720
|
+
7: re,
|
|
721
|
+
8: ie,
|
|
722
|
+
9: ae,
|
|
723
|
+
10: oe,
|
|
724
|
+
11: se,
|
|
725
|
+
12: ce,
|
|
726
|
+
13: le,
|
|
727
|
+
14: ue,
|
|
728
|
+
15: de,
|
|
729
|
+
21: 63
|
|
730
|
+
},
|
|
731
|
+
t(l, [2, 53], {
|
|
732
|
+
59: 59,
|
|
733
|
+
58: 60,
|
|
734
|
+
4: d,
|
|
735
|
+
5: f,
|
|
736
|
+
8: L,
|
|
737
|
+
10: p,
|
|
738
|
+
12: m,
|
|
739
|
+
13: h,
|
|
740
|
+
14: g,
|
|
741
|
+
18: R,
|
|
742
|
+
49: [1, 77],
|
|
743
|
+
63: M,
|
|
744
|
+
64: N,
|
|
745
|
+
65: P,
|
|
746
|
+
66: F,
|
|
747
|
+
67: I
|
|
748
|
+
}),
|
|
749
|
+
t(l, [2, 56], {
|
|
750
|
+
59: 59,
|
|
751
|
+
58: 60,
|
|
752
|
+
4: d,
|
|
753
|
+
5: f,
|
|
754
|
+
8: L,
|
|
755
|
+
10: p,
|
|
756
|
+
12: m,
|
|
757
|
+
13: h,
|
|
758
|
+
14: g,
|
|
759
|
+
18: R,
|
|
760
|
+
49: [1, 78],
|
|
761
|
+
63: M,
|
|
762
|
+
64: N,
|
|
763
|
+
65: P,
|
|
764
|
+
66: F,
|
|
765
|
+
67: I
|
|
766
|
+
}),
|
|
767
|
+
t(l, [2, 57], {
|
|
768
|
+
59: 59,
|
|
769
|
+
58: 60,
|
|
770
|
+
4: d,
|
|
771
|
+
5: f,
|
|
772
|
+
8: L,
|
|
773
|
+
10: p,
|
|
774
|
+
12: m,
|
|
775
|
+
13: h,
|
|
776
|
+
14: g,
|
|
777
|
+
18: R,
|
|
778
|
+
63: M,
|
|
779
|
+
64: N,
|
|
780
|
+
65: P,
|
|
781
|
+
66: F,
|
|
782
|
+
67: I
|
|
783
|
+
}),
|
|
784
|
+
t(l, [2, 58], {
|
|
785
|
+
59: 59,
|
|
786
|
+
58: 60,
|
|
787
|
+
4: d,
|
|
788
|
+
5: f,
|
|
789
|
+
8: L,
|
|
790
|
+
10: p,
|
|
791
|
+
12: m,
|
|
792
|
+
13: h,
|
|
793
|
+
14: g,
|
|
794
|
+
18: R,
|
|
795
|
+
63: M,
|
|
796
|
+
64: N,
|
|
797
|
+
65: P,
|
|
798
|
+
66: F,
|
|
799
|
+
67: I
|
|
800
|
+
}),
|
|
801
|
+
t(l, [2, 59], {
|
|
802
|
+
59: 59,
|
|
803
|
+
58: 60,
|
|
804
|
+
4: d,
|
|
805
|
+
5: f,
|
|
806
|
+
8: L,
|
|
807
|
+
10: p,
|
|
808
|
+
12: m,
|
|
809
|
+
13: h,
|
|
810
|
+
14: g,
|
|
811
|
+
18: R,
|
|
812
|
+
63: M,
|
|
813
|
+
64: N,
|
|
814
|
+
65: P,
|
|
815
|
+
66: F,
|
|
816
|
+
67: I
|
|
817
|
+
}),
|
|
818
|
+
t(l, [2, 60], {
|
|
819
|
+
59: 59,
|
|
820
|
+
58: 60,
|
|
821
|
+
4: d,
|
|
822
|
+
5: f,
|
|
823
|
+
8: L,
|
|
824
|
+
10: p,
|
|
825
|
+
12: m,
|
|
826
|
+
13: h,
|
|
827
|
+
14: g,
|
|
828
|
+
18: R,
|
|
829
|
+
63: M,
|
|
830
|
+
64: N,
|
|
831
|
+
65: P,
|
|
832
|
+
66: F,
|
|
833
|
+
67: I
|
|
834
|
+
}),
|
|
835
|
+
{ 45: [1, 79] },
|
|
836
|
+
{ 44: [1, 80] },
|
|
837
|
+
t(z, [2, 65]),
|
|
838
|
+
t(z, [2, 81]),
|
|
839
|
+
t(z, [2, 82]),
|
|
840
|
+
t(z, [2, 83]),
|
|
841
|
+
{
|
|
842
|
+
3: 82,
|
|
843
|
+
4: ee,
|
|
844
|
+
5: te,
|
|
845
|
+
6: ne,
|
|
846
|
+
7: re,
|
|
847
|
+
8: ie,
|
|
848
|
+
9: ae,
|
|
849
|
+
10: oe,
|
|
850
|
+
11: se,
|
|
851
|
+
12: ce,
|
|
852
|
+
13: le,
|
|
853
|
+
14: ue,
|
|
854
|
+
15: de,
|
|
855
|
+
18: [1, 81]
|
|
856
|
+
},
|
|
857
|
+
t(B, [2, 23]),
|
|
858
|
+
t(B, [2, 1]),
|
|
859
|
+
t(B, [2, 2]),
|
|
860
|
+
t(B, [2, 3]),
|
|
861
|
+
t(B, [2, 4]),
|
|
862
|
+
t(B, [2, 5]),
|
|
863
|
+
t(B, [2, 6]),
|
|
864
|
+
t(B, [2, 7]),
|
|
865
|
+
t(B, [2, 8]),
|
|
866
|
+
t(B, [2, 9]),
|
|
867
|
+
t(B, [2, 10]),
|
|
868
|
+
t(B, [2, 11]),
|
|
869
|
+
t(B, [2, 12]),
|
|
870
|
+
t(l, [2, 52], {
|
|
871
|
+
58: 31,
|
|
872
|
+
43: 83,
|
|
873
|
+
4: d,
|
|
874
|
+
5: f,
|
|
875
|
+
10: p,
|
|
876
|
+
12: m,
|
|
877
|
+
13: h,
|
|
878
|
+
14: g,
|
|
879
|
+
60: A,
|
|
880
|
+
61: j,
|
|
881
|
+
63: M,
|
|
882
|
+
64: N,
|
|
883
|
+
65: P,
|
|
884
|
+
66: F,
|
|
885
|
+
67: I
|
|
886
|
+
}),
|
|
887
|
+
t(l, [2, 55], {
|
|
888
|
+
58: 31,
|
|
889
|
+
43: 84,
|
|
890
|
+
4: d,
|
|
891
|
+
5: f,
|
|
892
|
+
10: p,
|
|
893
|
+
12: m,
|
|
894
|
+
13: h,
|
|
895
|
+
14: g,
|
|
896
|
+
60: A,
|
|
897
|
+
61: j,
|
|
898
|
+
63: M,
|
|
899
|
+
64: N,
|
|
900
|
+
65: P,
|
|
901
|
+
66: F,
|
|
902
|
+
67: I
|
|
903
|
+
}),
|
|
904
|
+
{ 46: [1, 85] },
|
|
905
|
+
{ 45: [1, 86] },
|
|
906
|
+
{
|
|
907
|
+
4: V,
|
|
908
|
+
5: H,
|
|
909
|
+
6: U,
|
|
910
|
+
8: W,
|
|
911
|
+
11: G,
|
|
912
|
+
13: K,
|
|
913
|
+
16: 89,
|
|
914
|
+
17: q,
|
|
915
|
+
18: J,
|
|
916
|
+
19: Y,
|
|
917
|
+
20: X,
|
|
918
|
+
22: 88,
|
|
919
|
+
23: 87
|
|
920
|
+
},
|
|
921
|
+
t(B, [2, 24]),
|
|
922
|
+
t(l, [2, 51], {
|
|
923
|
+
59: 59,
|
|
924
|
+
58: 60,
|
|
925
|
+
4: d,
|
|
926
|
+
5: f,
|
|
927
|
+
8: L,
|
|
928
|
+
10: p,
|
|
929
|
+
12: m,
|
|
930
|
+
13: h,
|
|
931
|
+
14: g,
|
|
932
|
+
18: R,
|
|
933
|
+
63: M,
|
|
934
|
+
64: N,
|
|
935
|
+
65: P,
|
|
936
|
+
66: F,
|
|
937
|
+
67: I
|
|
938
|
+
}),
|
|
939
|
+
t(l, [2, 54], {
|
|
940
|
+
59: 59,
|
|
941
|
+
58: 60,
|
|
942
|
+
4: d,
|
|
943
|
+
5: f,
|
|
944
|
+
8: L,
|
|
945
|
+
10: p,
|
|
946
|
+
12: m,
|
|
947
|
+
13: h,
|
|
948
|
+
14: g,
|
|
949
|
+
18: R,
|
|
950
|
+
63: M,
|
|
951
|
+
64: N,
|
|
952
|
+
65: P,
|
|
953
|
+
66: F,
|
|
954
|
+
67: I
|
|
955
|
+
}),
|
|
956
|
+
t(l, [2, 47], {
|
|
957
|
+
22: 88,
|
|
958
|
+
16: 89,
|
|
959
|
+
23: 100,
|
|
960
|
+
4: V,
|
|
961
|
+
5: H,
|
|
962
|
+
6: U,
|
|
963
|
+
8: W,
|
|
964
|
+
11: G,
|
|
965
|
+
13: K,
|
|
966
|
+
17: q,
|
|
967
|
+
18: J,
|
|
968
|
+
19: Y,
|
|
969
|
+
20: X
|
|
970
|
+
}),
|
|
971
|
+
{ 46: [1, 101] },
|
|
972
|
+
t(l, [2, 29], { 10: Z }),
|
|
973
|
+
t(fe, [2, 27], {
|
|
974
|
+
16: 103,
|
|
975
|
+
4: V,
|
|
976
|
+
5: H,
|
|
977
|
+
6: U,
|
|
978
|
+
8: W,
|
|
979
|
+
11: G,
|
|
980
|
+
13: K,
|
|
981
|
+
17: q,
|
|
982
|
+
18: J,
|
|
983
|
+
19: Y,
|
|
984
|
+
20: X
|
|
985
|
+
}),
|
|
986
|
+
t(Q, [2, 25]),
|
|
987
|
+
t(Q, [2, 13]),
|
|
988
|
+
t(Q, [2, 14]),
|
|
989
|
+
t(Q, [2, 15]),
|
|
990
|
+
t(Q, [2, 16]),
|
|
991
|
+
t(Q, [2, 17]),
|
|
992
|
+
t(Q, [2, 18]),
|
|
993
|
+
t(Q, [2, 19]),
|
|
994
|
+
t(Q, [2, 20]),
|
|
995
|
+
t(Q, [2, 21]),
|
|
996
|
+
t(Q, [2, 22]),
|
|
997
|
+
t(l, [2, 49], { 10: Z }),
|
|
998
|
+
t(l, [2, 48], {
|
|
999
|
+
22: 88,
|
|
1000
|
+
16: 89,
|
|
1001
|
+
23: 104,
|
|
1002
|
+
4: V,
|
|
1003
|
+
5: H,
|
|
1004
|
+
6: U,
|
|
1005
|
+
8: W,
|
|
1006
|
+
11: G,
|
|
1007
|
+
13: K,
|
|
1008
|
+
17: q,
|
|
1009
|
+
18: J,
|
|
1010
|
+
19: Y,
|
|
1011
|
+
20: X
|
|
1012
|
+
}),
|
|
1013
|
+
{
|
|
1014
|
+
4: V,
|
|
1015
|
+
5: H,
|
|
1016
|
+
6: U,
|
|
1017
|
+
8: W,
|
|
1018
|
+
11: G,
|
|
1019
|
+
13: K,
|
|
1020
|
+
16: 89,
|
|
1021
|
+
17: q,
|
|
1022
|
+
18: J,
|
|
1023
|
+
19: Y,
|
|
1024
|
+
20: X,
|
|
1025
|
+
22: 105
|
|
1026
|
+
},
|
|
1027
|
+
t(Q, [2, 26]),
|
|
1028
|
+
t(l, [2, 50], { 10: Z }),
|
|
1029
|
+
t(fe, [2, 28], {
|
|
1030
|
+
16: 103,
|
|
1031
|
+
4: V,
|
|
1032
|
+
5: H,
|
|
1033
|
+
6: U,
|
|
1034
|
+
8: W,
|
|
1035
|
+
11: G,
|
|
1036
|
+
13: K,
|
|
1037
|
+
17: q,
|
|
1038
|
+
18: J,
|
|
1039
|
+
19: Y,
|
|
1040
|
+
20: X
|
|
1041
|
+
})
|
|
1042
|
+
],
|
|
1043
|
+
defaultActions: {
|
|
1044
|
+
8: [2, 30],
|
|
1045
|
+
9: [2, 31]
|
|
1046
|
+
},
|
|
1047
|
+
parseError: /* @__PURE__ */ __name(function(e, t) {
|
|
1048
|
+
if (t.recoverable) this.trace(e);
|
|
1049
|
+
else {
|
|
1050
|
+
var n = Error(e);
|
|
1051
|
+
throw n.hash = t, n;
|
|
1052
|
+
}
|
|
1053
|
+
}, "parseError"),
|
|
1054
|
+
parse: /* @__PURE__ */ __name(function(t) {
|
|
1055
|
+
var n = this, r = [0], i = [], a = [null], o = [], s = this.table, c = "", l = 0, u = 0, d = 0, f = 2, p = 1, m = o.slice.call(arguments, 1), h = Object.create(this.lexer), g = { yy: {} };
|
|
1056
|
+
for (var _ in this.yy) Object.prototype.hasOwnProperty.call(this.yy, _) && (g.yy[_] = this.yy[_]);
|
|
1057
|
+
h.setInput(t, g.yy), g.yy.lexer = h, g.yy.parser = this, h.yylloc === void 0 && (h.yylloc = {});
|
|
1058
|
+
var v = h.yylloc;
|
|
1059
|
+
o.push(v);
|
|
1060
|
+
var y = h.options && h.options.ranges;
|
|
1061
|
+
typeof g.yy.parseError == "function" ? this.parseError = g.yy.parseError : this.parseError = Object.getPrototypeOf(this).parseError;
|
|
1062
|
+
function b(e) {
|
|
1063
|
+
r.length -= 2 * e, a.length -= e, o.length -= e;
|
|
1064
|
+
}
|
|
1065
|
+
__name(b, "popStack");
|
|
1066
|
+
function x() {
|
|
1067
|
+
var e = i.pop() || h.lex() || p;
|
|
1068
|
+
return typeof e != "number" && (e instanceof Array && (i = e, e = i.pop()), e = n.symbols_[e] || e), e;
|
|
1069
|
+
}
|
|
1070
|
+
__name(x, "lex");
|
|
1071
|
+
for (var S, C, w, T, E, D = {}, O, k, A, j;;) {
|
|
1072
|
+
if (w = r[r.length - 1], this.defaultActions[w] ? T = this.defaultActions[w] : (S ??= x(), T = s[w] && s[w][S]), T === void 0 || !T.length || !T[0]) {
|
|
1073
|
+
var M = "";
|
|
1074
|
+
for (O in j = [], s[w]) this.terminals_[O] && O > f && j.push("'" + this.terminals_[O] + "'");
|
|
1075
|
+
M = h.showPosition ? "Parse error on line " + (l + 1) + ":\n" + h.showPosition() + "\nExpecting " + j.join(", ") + ", got '" + (this.terminals_[S] || S) + "'" : "Parse error on line " + (l + 1) + ": Unexpected " + (S == p ? "end of input" : "'" + (this.terminals_[S] || S) + "'"), this.parseError(M, {
|
|
1076
|
+
text: h.match,
|
|
1077
|
+
token: this.terminals_[S] || S,
|
|
1078
|
+
line: h.yylineno,
|
|
1079
|
+
loc: v,
|
|
1080
|
+
expected: j
|
|
1081
|
+
});
|
|
1082
|
+
}
|
|
1083
|
+
if (T[0] instanceof Array && T.length > 1) throw Error("Parse Error: multiple actions possible at state: " + w + ", token: " + S);
|
|
1084
|
+
switch (T[0]) {
|
|
1085
|
+
case 1:
|
|
1086
|
+
r.push(S), a.push(h.yytext), o.push(h.yylloc), r.push(T[1]), S = null, C ? (S = C, C = null) : (u = h.yyleng, c = h.yytext, l = h.yylineno, v = h.yylloc, d > 0 && d--);
|
|
1087
|
+
break;
|
|
1088
|
+
case 2:
|
|
1089
|
+
if (k = this.productions_[T[1]][1], D.$ = a[a.length - k], D._$ = {
|
|
1090
|
+
first_line: o[o.length - (k || 1)].first_line,
|
|
1091
|
+
last_line: o[o.length - 1].last_line,
|
|
1092
|
+
first_column: o[o.length - (k || 1)].first_column,
|
|
1093
|
+
last_column: o[o.length - 1].last_column
|
|
1094
|
+
}, y && (D._$.range = [o[o.length - (k || 1)].range[0], o[o.length - 1].range[1]]), E = this.performAction.apply(D, [
|
|
1095
|
+
c,
|
|
1096
|
+
u,
|
|
1097
|
+
l,
|
|
1098
|
+
g.yy,
|
|
1099
|
+
T[1],
|
|
1100
|
+
a,
|
|
1101
|
+
o
|
|
1102
|
+
].concat(m)), E !== void 0) return E;
|
|
1103
|
+
k && (r = r.slice(0, -1 * k * 2), a = a.slice(0, -1 * k), o = o.slice(0, -1 * k)), r.push(this.productions_[T[1]][0]), a.push(D.$), o.push(D._$), A = s[r[r.length - 2]][r[r.length - 1]], r.push(A);
|
|
1104
|
+
break;
|
|
1105
|
+
case 3: return !0;
|
|
1106
|
+
}
|
|
1107
|
+
}
|
|
1108
|
+
return !0;
|
|
1109
|
+
}, "parse")
|
|
1110
|
+
};
|
|
1111
|
+
pe.lexer = /* @__PURE__ */ (function() {
|
|
1112
|
+
return {
|
|
1113
|
+
EOF: 1,
|
|
1114
|
+
parseError: /* @__PURE__ */ __name(function(e, t) {
|
|
1115
|
+
if (this.yy.parser) this.yy.parser.parseError(e, t);
|
|
1116
|
+
else throw Error(e);
|
|
1117
|
+
}, "parseError"),
|
|
1118
|
+
setInput: /* @__PURE__ */ __name(function(e, t) {
|
|
1119
|
+
return this.yy = t || this.yy || {}, this._input = e, this._more = this._backtrack = this.done = !1, this.yylineno = this.yyleng = 0, this.yytext = this.matched = this.match = "", this.conditionStack = ["INITIAL"], this.yylloc = {
|
|
1120
|
+
first_line: 1,
|
|
1121
|
+
first_column: 0,
|
|
1122
|
+
last_line: 1,
|
|
1123
|
+
last_column: 0
|
|
1124
|
+
}, this.options.ranges && (this.yylloc.range = [0, 0]), this.offset = 0, this;
|
|
1125
|
+
}, "setInput"),
|
|
1126
|
+
input: /* @__PURE__ */ __name(function() {
|
|
1127
|
+
var e = this._input[0];
|
|
1128
|
+
return this.yytext += e, this.yyleng++, this.offset++, this.match += e, this.matched += e, e.match(/(?:\r\n?|\n).*/g) ? (this.yylineno++, this.yylloc.last_line++) : this.yylloc.last_column++, this.options.ranges && this.yylloc.range[1]++, this._input = this._input.slice(1), e;
|
|
1129
|
+
}, "input"),
|
|
1130
|
+
unput: /* @__PURE__ */ __name(function(e) {
|
|
1131
|
+
var t = e.length, n = e.split(/(?:\r\n?|\n)/g);
|
|
1132
|
+
this._input = e + this._input, this.yytext = this.yytext.substr(0, this.yytext.length - t), this.offset -= t;
|
|
1133
|
+
var r = this.match.split(/(?:\r\n?|\n)/g);
|
|
1134
|
+
this.match = this.match.substr(0, this.match.length - 1), this.matched = this.matched.substr(0, this.matched.length - 1), n.length - 1 && (this.yylineno -= n.length - 1);
|
|
1135
|
+
var i = this.yylloc.range;
|
|
1136
|
+
return this.yylloc = {
|
|
1137
|
+
first_line: this.yylloc.first_line,
|
|
1138
|
+
last_line: this.yylineno + 1,
|
|
1139
|
+
first_column: this.yylloc.first_column,
|
|
1140
|
+
last_column: n ? (n.length === r.length ? this.yylloc.first_column : 0) + r[r.length - n.length].length - n[0].length : this.yylloc.first_column - t
|
|
1141
|
+
}, this.options.ranges && (this.yylloc.range = [i[0], i[0] + this.yyleng - t]), this.yyleng = this.yytext.length, this;
|
|
1142
|
+
}, "unput"),
|
|
1143
|
+
more: /* @__PURE__ */ __name(function() {
|
|
1144
|
+
return this._more = !0, this;
|
|
1145
|
+
}, "more"),
|
|
1146
|
+
reject: /* @__PURE__ */ __name(function() {
|
|
1147
|
+
if (this.options.backtrack_lexer) this._backtrack = !0;
|
|
1148
|
+
else return this.parseError("Lexical error on line " + (this.yylineno + 1) + ". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n" + this.showPosition(), {
|
|
1149
|
+
text: "",
|
|
1150
|
+
token: null,
|
|
1151
|
+
line: this.yylineno
|
|
1152
|
+
});
|
|
1153
|
+
return this;
|
|
1154
|
+
}, "reject"),
|
|
1155
|
+
less: /* @__PURE__ */ __name(function(e) {
|
|
1156
|
+
this.unput(this.match.slice(e));
|
|
1157
|
+
}, "less"),
|
|
1158
|
+
pastInput: /* @__PURE__ */ __name(function() {
|
|
1159
|
+
var e = this.matched.substr(0, this.matched.length - this.match.length);
|
|
1160
|
+
return (e.length > 20 ? "..." : "") + e.substr(-20).replace(/\n/g, "");
|
|
1161
|
+
}, "pastInput"),
|
|
1162
|
+
upcomingInput: /* @__PURE__ */ __name(function() {
|
|
1163
|
+
var e = this.match;
|
|
1164
|
+
return e.length < 20 && (e += this._input.substr(0, 20 - e.length)), (e.substr(0, 20) + (e.length > 20 ? "..." : "")).replace(/\n/g, "");
|
|
1165
|
+
}, "upcomingInput"),
|
|
1166
|
+
showPosition: /* @__PURE__ */ __name(function() {
|
|
1167
|
+
var e = this.pastInput(), t = Array(e.length + 1).join("-");
|
|
1168
|
+
return e + this.upcomingInput() + "\n" + t + "^";
|
|
1169
|
+
}, "showPosition"),
|
|
1170
|
+
test_match: /* @__PURE__ */ __name(function(e, t) {
|
|
1171
|
+
var n, r, i;
|
|
1172
|
+
if (this.options.backtrack_lexer && (i = {
|
|
1173
|
+
yylineno: this.yylineno,
|
|
1174
|
+
yylloc: {
|
|
1175
|
+
first_line: this.yylloc.first_line,
|
|
1176
|
+
last_line: this.last_line,
|
|
1177
|
+
first_column: this.yylloc.first_column,
|
|
1178
|
+
last_column: this.yylloc.last_column
|
|
1179
|
+
},
|
|
1180
|
+
yytext: this.yytext,
|
|
1181
|
+
match: this.match,
|
|
1182
|
+
matches: this.matches,
|
|
1183
|
+
matched: this.matched,
|
|
1184
|
+
yyleng: this.yyleng,
|
|
1185
|
+
offset: this.offset,
|
|
1186
|
+
_more: this._more,
|
|
1187
|
+
_input: this._input,
|
|
1188
|
+
yy: this.yy,
|
|
1189
|
+
conditionStack: this.conditionStack.slice(0),
|
|
1190
|
+
done: this.done
|
|
1191
|
+
}, this.options.ranges && (i.yylloc.range = this.yylloc.range.slice(0))), r = e[0].match(/(?:\r\n?|\n).*/g), r && (this.yylineno += r.length), this.yylloc = {
|
|
1192
|
+
first_line: this.yylloc.last_line,
|
|
1193
|
+
last_line: this.yylineno + 1,
|
|
1194
|
+
first_column: this.yylloc.last_column,
|
|
1195
|
+
last_column: r ? r[r.length - 1].length - r[r.length - 1].match(/\r?\n?/)[0].length : this.yylloc.last_column + e[0].length
|
|
1196
|
+
}, this.yytext += e[0], this.match += e[0], this.matches = e, this.yyleng = this.yytext.length, this.options.ranges && (this.yylloc.range = [this.offset, this.offset += this.yyleng]), this._more = !1, this._backtrack = !1, this._input = this._input.slice(e[0].length), this.matched += e[0], n = this.performAction.call(this, this.yy, this, t, this.conditionStack[this.conditionStack.length - 1]), this.done && this._input && (this.done = !1), n) return n;
|
|
1197
|
+
if (this._backtrack) {
|
|
1198
|
+
for (var a in i) this[a] = i[a];
|
|
1199
|
+
return !1;
|
|
1200
|
+
}
|
|
1201
|
+
return !1;
|
|
1202
|
+
}, "test_match"),
|
|
1203
|
+
next: /* @__PURE__ */ __name(function() {
|
|
1204
|
+
if (this.done) return this.EOF;
|
|
1205
|
+
this._input || (this.done = !0);
|
|
1206
|
+
var e, t, n, r;
|
|
1207
|
+
this._more || (this.yytext = "", this.match = "");
|
|
1208
|
+
for (var i = this._currentRules(), a = 0; a < i.length; a++) if (n = this._input.match(this.rules[i[a]]), n && (!t || n[0].length > t[0].length)) {
|
|
1209
|
+
if (t = n, r = a, this.options.backtrack_lexer) {
|
|
1210
|
+
if (e = this.test_match(n, i[a]), e !== !1) return e;
|
|
1211
|
+
if (this._backtrack) {
|
|
1212
|
+
t = !1;
|
|
1213
|
+
continue;
|
|
1214
|
+
} else return !1;
|
|
1215
|
+
} else if (!this.options.flex) break;
|
|
1216
|
+
}
|
|
1217
|
+
return t ? (e = this.test_match(t, i[r]), e === !1 ? !1 : e) : this._input === "" ? this.EOF : this.parseError("Lexical error on line " + (this.yylineno + 1) + ". Unrecognized text.\n" + this.showPosition(), {
|
|
1218
|
+
text: "",
|
|
1219
|
+
token: null,
|
|
1220
|
+
line: this.yylineno
|
|
1221
|
+
});
|
|
1222
|
+
}, "next"),
|
|
1223
|
+
lex: /* @__PURE__ */ __name(function() {
|
|
1224
|
+
return this.next() || this.lex();
|
|
1225
|
+
}, "lex"),
|
|
1226
|
+
begin: /* @__PURE__ */ __name(function(e) {
|
|
1227
|
+
this.conditionStack.push(e);
|
|
1228
|
+
}, "begin"),
|
|
1229
|
+
popState: /* @__PURE__ */ __name(function() {
|
|
1230
|
+
return this.conditionStack.length - 1 > 0 ? this.conditionStack.pop() : this.conditionStack[0];
|
|
1231
|
+
}, "popState"),
|
|
1232
|
+
_currentRules: /* @__PURE__ */ __name(function() {
|
|
1233
|
+
return this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1] ? this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules : this.conditions.INITIAL.rules;
|
|
1234
|
+
}, "_currentRules"),
|
|
1235
|
+
topState: /* @__PURE__ */ __name(function(e) {
|
|
1236
|
+
return e = this.conditionStack.length - 1 - Math.abs(e || 0), e >= 0 ? this.conditionStack[e] : "INITIAL";
|
|
1237
|
+
}, "topState"),
|
|
1238
|
+
pushState: /* @__PURE__ */ __name(function(e) {
|
|
1239
|
+
this.begin(e);
|
|
1240
|
+
}, "pushState"),
|
|
1241
|
+
stateStackSize: /* @__PURE__ */ __name(function() {
|
|
1242
|
+
return this.conditionStack.length;
|
|
1243
|
+
}, "stateStackSize"),
|
|
1244
|
+
options: { "case-insensitive": !0 },
|
|
1245
|
+
performAction: /* @__PURE__ */ __name(function(e, t, n, r) {
|
|
1246
|
+
switch (n) {
|
|
1247
|
+
case 0: break;
|
|
1248
|
+
case 1: break;
|
|
1249
|
+
case 2: return 55;
|
|
1250
|
+
case 3: break;
|
|
1251
|
+
case 4: return this.begin("title"), 35;
|
|
1252
|
+
case 5: return this.popState(), "title_value";
|
|
1253
|
+
case 6: return this.begin("acc_title"), 37;
|
|
1254
|
+
case 7: return this.popState(), "acc_title_value";
|
|
1255
|
+
case 8: return this.begin("acc_descr"), 39;
|
|
1256
|
+
case 9: return this.popState(), "acc_descr_value";
|
|
1257
|
+
case 10:
|
|
1258
|
+
this.begin("acc_descr_multiline");
|
|
1259
|
+
break;
|
|
1260
|
+
case 11:
|
|
1261
|
+
this.popState();
|
|
1262
|
+
break;
|
|
1263
|
+
case 12: return "acc_descr_multiline_value";
|
|
1264
|
+
case 13: return 48;
|
|
1265
|
+
case 14: return 50;
|
|
1266
|
+
case 15: return 49;
|
|
1267
|
+
case 16: return 51;
|
|
1268
|
+
case 17: return 52;
|
|
1269
|
+
case 18: return 53;
|
|
1270
|
+
case 19: return 54;
|
|
1271
|
+
case 20: return 25;
|
|
1272
|
+
case 21:
|
|
1273
|
+
this.begin("md_string");
|
|
1274
|
+
break;
|
|
1275
|
+
case 22: return "MD_STR";
|
|
1276
|
+
case 23:
|
|
1277
|
+
this.popState();
|
|
1278
|
+
break;
|
|
1279
|
+
case 24:
|
|
1280
|
+
this.begin("string");
|
|
1281
|
+
break;
|
|
1282
|
+
case 25:
|
|
1283
|
+
this.popState();
|
|
1284
|
+
break;
|
|
1285
|
+
case 26: return "STR";
|
|
1286
|
+
case 27:
|
|
1287
|
+
this.begin("class_name");
|
|
1288
|
+
break;
|
|
1289
|
+
case 28: return this.popState(), 47;
|
|
1290
|
+
case 29: return this.begin("point_start"), 44;
|
|
1291
|
+
case 30: return this.begin("point_x"), 45;
|
|
1292
|
+
case 31:
|
|
1293
|
+
this.popState();
|
|
1294
|
+
break;
|
|
1295
|
+
case 32:
|
|
1296
|
+
this.popState(), this.begin("point_y");
|
|
1297
|
+
break;
|
|
1298
|
+
case 33: return this.popState(), 46;
|
|
1299
|
+
case 34: return 28;
|
|
1300
|
+
case 35: return 4;
|
|
1301
|
+
case 36: return 11;
|
|
1302
|
+
case 37: return 64;
|
|
1303
|
+
case 38: return 10;
|
|
1304
|
+
case 39: return 65;
|
|
1305
|
+
case 40: return 65;
|
|
1306
|
+
case 41: return 14;
|
|
1307
|
+
case 42: return 13;
|
|
1308
|
+
case 43: return 67;
|
|
1309
|
+
case 44: return 66;
|
|
1310
|
+
case 45: return 12;
|
|
1311
|
+
case 46: return 8;
|
|
1312
|
+
case 47: return 5;
|
|
1313
|
+
case 48: return 18;
|
|
1314
|
+
case 49: return 56;
|
|
1315
|
+
case 50: return 63;
|
|
1316
|
+
case 51: return 57;
|
|
1317
|
+
}
|
|
1318
|
+
}, "anonymous"),
|
|
1319
|
+
rules: [
|
|
1320
|
+
/^(?:%%(?!\{)[^\n]*)/i,
|
|
1321
|
+
/^(?:[^\}]%%[^\n]*)/i,
|
|
1322
|
+
/^(?:[\n\r]+)/i,
|
|
1323
|
+
/^(?:%%[^\n]*)/i,
|
|
1324
|
+
/^(?:title\b)/i,
|
|
1325
|
+
/^(?:(?!\n||)*[^\n]*)/i,
|
|
1326
|
+
/^(?:accTitle\s*:\s*)/i,
|
|
1327
|
+
/^(?:(?!\n||)*[^\n]*)/i,
|
|
1328
|
+
/^(?:accDescr\s*:\s*)/i,
|
|
1329
|
+
/^(?:(?!\n||)*[^\n]*)/i,
|
|
1330
|
+
/^(?:accDescr\s*\{\s*)/i,
|
|
1331
|
+
/^(?:[\}])/i,
|
|
1332
|
+
/^(?:[^\}]*)/i,
|
|
1333
|
+
/^(?: *x-axis *)/i,
|
|
1334
|
+
/^(?: *y-axis *)/i,
|
|
1335
|
+
/^(?: *--+> *)/i,
|
|
1336
|
+
/^(?: *quadrant-1 *)/i,
|
|
1337
|
+
/^(?: *quadrant-2 *)/i,
|
|
1338
|
+
/^(?: *quadrant-3 *)/i,
|
|
1339
|
+
/^(?: *quadrant-4 *)/i,
|
|
1340
|
+
/^(?:classDef\b)/i,
|
|
1341
|
+
/^(?:["][`])/i,
|
|
1342
|
+
/^(?:[^`"]+)/i,
|
|
1343
|
+
/^(?:[`]["])/i,
|
|
1344
|
+
/^(?:["])/i,
|
|
1345
|
+
/^(?:["])/i,
|
|
1346
|
+
/^(?:[^"]*)/i,
|
|
1347
|
+
/^(?::::)/i,
|
|
1348
|
+
/^(?:^\w+)/i,
|
|
1349
|
+
/^(?:\s*:\s*\[\s*)/i,
|
|
1350
|
+
/^(?:(1)|(0(.\d+)?))/i,
|
|
1351
|
+
/^(?:\s*\] *)/i,
|
|
1352
|
+
/^(?:\s*,\s*)/i,
|
|
1353
|
+
/^(?:(1)|(0(.\d+)?))/i,
|
|
1354
|
+
/^(?: *quadrantChart *)/i,
|
|
1355
|
+
/^(?:[A-Za-z]+)/i,
|
|
1356
|
+
/^(?::)/i,
|
|
1357
|
+
/^(?:\+)/i,
|
|
1358
|
+
/^(?:,)/i,
|
|
1359
|
+
/^(?:=)/i,
|
|
1360
|
+
/^(?:=)/i,
|
|
1361
|
+
/^(?:\*)/i,
|
|
1362
|
+
/^(?:#)/i,
|
|
1363
|
+
/^(?:[\_])/i,
|
|
1364
|
+
/^(?:\.)/i,
|
|
1365
|
+
/^(?:&)/i,
|
|
1366
|
+
/^(?:-)/i,
|
|
1367
|
+
/^(?:[0-9]+)/i,
|
|
1368
|
+
/^(?:\s)/i,
|
|
1369
|
+
/^(?:;)/i,
|
|
1370
|
+
/^(?:[!"#$%&'*+,-.`?\\_/])/i,
|
|
1371
|
+
/^(?:$)/i
|
|
1372
|
+
],
|
|
1373
|
+
conditions: {
|
|
1374
|
+
class_name: {
|
|
1375
|
+
rules: [28],
|
|
1376
|
+
inclusive: !1
|
|
1377
|
+
},
|
|
1378
|
+
point_y: {
|
|
1379
|
+
rules: [33],
|
|
1380
|
+
inclusive: !1
|
|
1381
|
+
},
|
|
1382
|
+
point_x: {
|
|
1383
|
+
rules: [32],
|
|
1384
|
+
inclusive: !1
|
|
1385
|
+
},
|
|
1386
|
+
point_start: {
|
|
1387
|
+
rules: [30, 31],
|
|
1388
|
+
inclusive: !1
|
|
1389
|
+
},
|
|
1390
|
+
acc_descr_multiline: {
|
|
1391
|
+
rules: [11, 12],
|
|
1392
|
+
inclusive: !1
|
|
1393
|
+
},
|
|
1394
|
+
acc_descr: {
|
|
1395
|
+
rules: [9],
|
|
1396
|
+
inclusive: !1
|
|
1397
|
+
},
|
|
1398
|
+
acc_title: {
|
|
1399
|
+
rules: [7],
|
|
1400
|
+
inclusive: !1
|
|
1401
|
+
},
|
|
1402
|
+
title: {
|
|
1403
|
+
rules: [5],
|
|
1404
|
+
inclusive: !1
|
|
1405
|
+
},
|
|
1406
|
+
md_string: {
|
|
1407
|
+
rules: [22, 23],
|
|
1408
|
+
inclusive: !1
|
|
1409
|
+
},
|
|
1410
|
+
string: {
|
|
1411
|
+
rules: [25, 26],
|
|
1412
|
+
inclusive: !1
|
|
1413
|
+
},
|
|
1414
|
+
INITIAL: {
|
|
1415
|
+
rules: [
|
|
1416
|
+
0,
|
|
1417
|
+
1,
|
|
1418
|
+
2,
|
|
1419
|
+
3,
|
|
1420
|
+
4,
|
|
1421
|
+
6,
|
|
1422
|
+
8,
|
|
1423
|
+
10,
|
|
1424
|
+
13,
|
|
1425
|
+
14,
|
|
1426
|
+
15,
|
|
1427
|
+
16,
|
|
1428
|
+
17,
|
|
1429
|
+
18,
|
|
1430
|
+
19,
|
|
1431
|
+
20,
|
|
1432
|
+
21,
|
|
1433
|
+
24,
|
|
1434
|
+
27,
|
|
1435
|
+
29,
|
|
1436
|
+
34,
|
|
1437
|
+
35,
|
|
1438
|
+
36,
|
|
1439
|
+
37,
|
|
1440
|
+
38,
|
|
1441
|
+
39,
|
|
1442
|
+
40,
|
|
1443
|
+
41,
|
|
1444
|
+
42,
|
|
1445
|
+
43,
|
|
1446
|
+
44,
|
|
1447
|
+
45,
|
|
1448
|
+
46,
|
|
1449
|
+
47,
|
|
1450
|
+
48,
|
|
1451
|
+
49,
|
|
1452
|
+
50,
|
|
1453
|
+
51
|
|
1454
|
+
],
|
|
1455
|
+
inclusive: !0
|
|
1456
|
+
}
|
|
1457
|
+
}
|
|
1458
|
+
};
|
|
1459
|
+
})();
|
|
1460
|
+
function $() {
|
|
1461
|
+
this.yy = {};
|
|
1462
|
+
}
|
|
1463
|
+
return __name($, "Parser"), $.prototype = pe, pe.Parser = $, new $();
|
|
1464
|
+
})();
|
|
1465
|
+
parser.parser = parser;
|
|
1466
|
+
var quadrant_default = parser, defaultThemeVariables = getThemeVariables3(), QuadrantBuilder = class {
|
|
1467
|
+
constructor() {
|
|
1468
|
+
this.classes = /* @__PURE__ */ new Map(), this.config = this.getDefaultConfig(), this.themeConfig = this.getDefaultThemeConfig(), this.data = this.getDefaultData();
|
|
1469
|
+
}
|
|
1470
|
+
static #e = __name(this, "QuadrantBuilder");
|
|
1471
|
+
getDefaultData() {
|
|
1472
|
+
return {
|
|
1473
|
+
titleText: "",
|
|
1474
|
+
quadrant1Text: "",
|
|
1475
|
+
quadrant2Text: "",
|
|
1476
|
+
quadrant3Text: "",
|
|
1477
|
+
quadrant4Text: "",
|
|
1478
|
+
xAxisLeftText: "",
|
|
1479
|
+
xAxisRightText: "",
|
|
1480
|
+
yAxisBottomText: "",
|
|
1481
|
+
yAxisTopText: "",
|
|
1482
|
+
points: []
|
|
1483
|
+
};
|
|
1484
|
+
}
|
|
1485
|
+
getDefaultConfig() {
|
|
1486
|
+
return {
|
|
1487
|
+
showXAxis: !0,
|
|
1488
|
+
showYAxis: !0,
|
|
1489
|
+
showTitle: !0,
|
|
1490
|
+
chartHeight: defaultConfig_default.quadrantChart?.chartWidth || 500,
|
|
1491
|
+
chartWidth: defaultConfig_default.quadrantChart?.chartHeight || 500,
|
|
1492
|
+
titlePadding: defaultConfig_default.quadrantChart?.titlePadding || 10,
|
|
1493
|
+
titleFontSize: defaultConfig_default.quadrantChart?.titleFontSize || 20,
|
|
1494
|
+
quadrantPadding: defaultConfig_default.quadrantChart?.quadrantPadding || 5,
|
|
1495
|
+
xAxisLabelPadding: defaultConfig_default.quadrantChart?.xAxisLabelPadding || 5,
|
|
1496
|
+
yAxisLabelPadding: defaultConfig_default.quadrantChart?.yAxisLabelPadding || 5,
|
|
1497
|
+
xAxisLabelFontSize: defaultConfig_default.quadrantChart?.xAxisLabelFontSize || 16,
|
|
1498
|
+
yAxisLabelFontSize: defaultConfig_default.quadrantChart?.yAxisLabelFontSize || 16,
|
|
1499
|
+
quadrantLabelFontSize: defaultConfig_default.quadrantChart?.quadrantLabelFontSize || 16,
|
|
1500
|
+
quadrantTextTopPadding: defaultConfig_default.quadrantChart?.quadrantTextTopPadding || 5,
|
|
1501
|
+
pointTextPadding: defaultConfig_default.quadrantChart?.pointTextPadding || 5,
|
|
1502
|
+
pointLabelFontSize: defaultConfig_default.quadrantChart?.pointLabelFontSize || 12,
|
|
1503
|
+
pointRadius: defaultConfig_default.quadrantChart?.pointRadius || 5,
|
|
1504
|
+
xAxisPosition: defaultConfig_default.quadrantChart?.xAxisPosition || "top",
|
|
1505
|
+
yAxisPosition: defaultConfig_default.quadrantChart?.yAxisPosition || "left",
|
|
1506
|
+
quadrantInternalBorderStrokeWidth: defaultConfig_default.quadrantChart?.quadrantInternalBorderStrokeWidth || 1,
|
|
1507
|
+
quadrantExternalBorderStrokeWidth: defaultConfig_default.quadrantChart?.quadrantExternalBorderStrokeWidth || 2
|
|
1508
|
+
};
|
|
1509
|
+
}
|
|
1510
|
+
getDefaultThemeConfig() {
|
|
1511
|
+
return {
|
|
1512
|
+
quadrant1Fill: defaultThemeVariables.quadrant1Fill,
|
|
1513
|
+
quadrant2Fill: defaultThemeVariables.quadrant2Fill,
|
|
1514
|
+
quadrant3Fill: defaultThemeVariables.quadrant3Fill,
|
|
1515
|
+
quadrant4Fill: defaultThemeVariables.quadrant4Fill,
|
|
1516
|
+
quadrant1TextFill: defaultThemeVariables.quadrant1TextFill,
|
|
1517
|
+
quadrant2TextFill: defaultThemeVariables.quadrant2TextFill,
|
|
1518
|
+
quadrant3TextFill: defaultThemeVariables.quadrant3TextFill,
|
|
1519
|
+
quadrant4TextFill: defaultThemeVariables.quadrant4TextFill,
|
|
1520
|
+
quadrantPointFill: defaultThemeVariables.quadrantPointFill,
|
|
1521
|
+
quadrantPointTextFill: defaultThemeVariables.quadrantPointTextFill,
|
|
1522
|
+
quadrantXAxisTextFill: defaultThemeVariables.quadrantXAxisTextFill,
|
|
1523
|
+
quadrantYAxisTextFill: defaultThemeVariables.quadrantYAxisTextFill,
|
|
1524
|
+
quadrantTitleFill: defaultThemeVariables.quadrantTitleFill,
|
|
1525
|
+
quadrantInternalBorderStrokeFill: defaultThemeVariables.quadrantInternalBorderStrokeFill,
|
|
1526
|
+
quadrantExternalBorderStrokeFill: defaultThemeVariables.quadrantExternalBorderStrokeFill
|
|
1527
|
+
};
|
|
1528
|
+
}
|
|
1529
|
+
clear() {
|
|
1530
|
+
this.config = this.getDefaultConfig(), this.themeConfig = this.getDefaultThemeConfig(), this.data = this.getDefaultData(), this.classes = /* @__PURE__ */ new Map(), log.info("clear called");
|
|
1531
|
+
}
|
|
1532
|
+
setData(e) {
|
|
1533
|
+
this.data = {
|
|
1534
|
+
...this.data,
|
|
1535
|
+
...e
|
|
1536
|
+
};
|
|
1537
|
+
}
|
|
1538
|
+
addPoints(e) {
|
|
1539
|
+
this.data.points = [...e, ...this.data.points];
|
|
1540
|
+
}
|
|
1541
|
+
addClass(e, t) {
|
|
1542
|
+
this.classes.set(e, t);
|
|
1543
|
+
}
|
|
1544
|
+
setConfig(e) {
|
|
1545
|
+
log.trace("setConfig called with: ", e), this.config = {
|
|
1546
|
+
...this.config,
|
|
1547
|
+
...e
|
|
1548
|
+
};
|
|
1549
|
+
}
|
|
1550
|
+
setThemeConfig(e) {
|
|
1551
|
+
log.trace("setThemeConfig called with: ", e), this.themeConfig = {
|
|
1552
|
+
...this.themeConfig,
|
|
1553
|
+
...e
|
|
1554
|
+
};
|
|
1555
|
+
}
|
|
1556
|
+
calculateSpace(e, t, n, r) {
|
|
1557
|
+
let i = this.config.xAxisLabelPadding * 2 + this.config.xAxisLabelFontSize, a = {
|
|
1558
|
+
top: e === "top" && t ? i : 0,
|
|
1559
|
+
bottom: e === "bottom" && t ? i : 0
|
|
1560
|
+
}, o = this.config.yAxisLabelPadding * 2 + this.config.yAxisLabelFontSize, s = {
|
|
1561
|
+
left: this.config.yAxisPosition === "left" && n ? o : 0,
|
|
1562
|
+
right: this.config.yAxisPosition === "right" && n ? o : 0
|
|
1563
|
+
}, c = this.config.titleFontSize + this.config.titlePadding * 2, l = { top: r ? c : 0 }, u = this.config.quadrantPadding + s.left, d = this.config.quadrantPadding + a.top + l.top, f = this.config.chartWidth - this.config.quadrantPadding * 2 - s.left - s.right, p = this.config.chartHeight - this.config.quadrantPadding * 2 - a.top - a.bottom - l.top;
|
|
1564
|
+
return {
|
|
1565
|
+
xAxisSpace: a,
|
|
1566
|
+
yAxisSpace: s,
|
|
1567
|
+
titleSpace: l,
|
|
1568
|
+
quadrantSpace: {
|
|
1569
|
+
quadrantLeft: u,
|
|
1570
|
+
quadrantTop: d,
|
|
1571
|
+
quadrantWidth: f,
|
|
1572
|
+
quadrantHalfWidth: f / 2,
|
|
1573
|
+
quadrantHeight: p,
|
|
1574
|
+
quadrantHalfHeight: p / 2
|
|
1575
|
+
}
|
|
1576
|
+
};
|
|
1577
|
+
}
|
|
1578
|
+
getAxisLabels(e, t, n, r) {
|
|
1579
|
+
let { quadrantSpace: i, titleSpace: a } = r, { quadrantHalfHeight: o, quadrantHeight: s, quadrantLeft: c, quadrantHalfWidth: l, quadrantTop: u, quadrantWidth: d } = i, f = !!this.data.xAxisRightText, p = !!this.data.yAxisTopText, m = [];
|
|
1580
|
+
return this.data.xAxisLeftText && t && m.push({
|
|
1581
|
+
text: this.data.xAxisLeftText,
|
|
1582
|
+
fill: this.themeConfig.quadrantXAxisTextFill,
|
|
1583
|
+
x: c + (f ? l / 2 : 0),
|
|
1584
|
+
y: e === "top" ? this.config.xAxisLabelPadding + a.top : this.config.xAxisLabelPadding + u + s + this.config.quadrantPadding,
|
|
1585
|
+
fontSize: this.config.xAxisLabelFontSize,
|
|
1586
|
+
verticalPos: f ? "center" : "left",
|
|
1587
|
+
horizontalPos: "top",
|
|
1588
|
+
rotation: 0
|
|
1589
|
+
}), this.data.xAxisRightText && t && m.push({
|
|
1590
|
+
text: this.data.xAxisRightText,
|
|
1591
|
+
fill: this.themeConfig.quadrantXAxisTextFill,
|
|
1592
|
+
x: c + l + (f ? l / 2 : 0),
|
|
1593
|
+
y: e === "top" ? this.config.xAxisLabelPadding + a.top : this.config.xAxisLabelPadding + u + s + this.config.quadrantPadding,
|
|
1594
|
+
fontSize: this.config.xAxisLabelFontSize,
|
|
1595
|
+
verticalPos: f ? "center" : "left",
|
|
1596
|
+
horizontalPos: "top",
|
|
1597
|
+
rotation: 0
|
|
1598
|
+
}), this.data.yAxisBottomText && n && m.push({
|
|
1599
|
+
text: this.data.yAxisBottomText,
|
|
1600
|
+
fill: this.themeConfig.quadrantYAxisTextFill,
|
|
1601
|
+
x: this.config.yAxisPosition === "left" ? this.config.yAxisLabelPadding : this.config.yAxisLabelPadding + c + d + this.config.quadrantPadding,
|
|
1602
|
+
y: u + s - (p ? o / 2 : 0),
|
|
1603
|
+
fontSize: this.config.yAxisLabelFontSize,
|
|
1604
|
+
verticalPos: p ? "center" : "left",
|
|
1605
|
+
horizontalPos: "top",
|
|
1606
|
+
rotation: -90
|
|
1607
|
+
}), this.data.yAxisTopText && n && m.push({
|
|
1608
|
+
text: this.data.yAxisTopText,
|
|
1609
|
+
fill: this.themeConfig.quadrantYAxisTextFill,
|
|
1610
|
+
x: this.config.yAxisPosition === "left" ? this.config.yAxisLabelPadding : this.config.yAxisLabelPadding + c + d + this.config.quadrantPadding,
|
|
1611
|
+
y: u + o - (p ? o / 2 : 0),
|
|
1612
|
+
fontSize: this.config.yAxisLabelFontSize,
|
|
1613
|
+
verticalPos: p ? "center" : "left",
|
|
1614
|
+
horizontalPos: "top",
|
|
1615
|
+
rotation: -90
|
|
1616
|
+
}), m;
|
|
1617
|
+
}
|
|
1618
|
+
getQuadrants(e) {
|
|
1619
|
+
let { quadrantSpace: t } = e, { quadrantHalfHeight: n, quadrantLeft: r, quadrantHalfWidth: i, quadrantTop: a } = t, o = [
|
|
1620
|
+
{
|
|
1621
|
+
text: {
|
|
1622
|
+
text: this.data.quadrant1Text,
|
|
1623
|
+
fill: this.themeConfig.quadrant1TextFill,
|
|
1624
|
+
x: 0,
|
|
1625
|
+
y: 0,
|
|
1626
|
+
fontSize: this.config.quadrantLabelFontSize,
|
|
1627
|
+
verticalPos: "center",
|
|
1628
|
+
horizontalPos: "middle",
|
|
1629
|
+
rotation: 0
|
|
1630
|
+
},
|
|
1631
|
+
x: r + i,
|
|
1632
|
+
y: a,
|
|
1633
|
+
width: i,
|
|
1634
|
+
height: n,
|
|
1635
|
+
fill: this.themeConfig.quadrant1Fill
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
text: {
|
|
1639
|
+
text: this.data.quadrant2Text,
|
|
1640
|
+
fill: this.themeConfig.quadrant2TextFill,
|
|
1641
|
+
x: 0,
|
|
1642
|
+
y: 0,
|
|
1643
|
+
fontSize: this.config.quadrantLabelFontSize,
|
|
1644
|
+
verticalPos: "center",
|
|
1645
|
+
horizontalPos: "middle",
|
|
1646
|
+
rotation: 0
|
|
1647
|
+
},
|
|
1648
|
+
x: r,
|
|
1649
|
+
y: a,
|
|
1650
|
+
width: i,
|
|
1651
|
+
height: n,
|
|
1652
|
+
fill: this.themeConfig.quadrant2Fill
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
text: {
|
|
1656
|
+
text: this.data.quadrant3Text,
|
|
1657
|
+
fill: this.themeConfig.quadrant3TextFill,
|
|
1658
|
+
x: 0,
|
|
1659
|
+
y: 0,
|
|
1660
|
+
fontSize: this.config.quadrantLabelFontSize,
|
|
1661
|
+
verticalPos: "center",
|
|
1662
|
+
horizontalPos: "middle",
|
|
1663
|
+
rotation: 0
|
|
1664
|
+
},
|
|
1665
|
+
x: r,
|
|
1666
|
+
y: a + n,
|
|
1667
|
+
width: i,
|
|
1668
|
+
height: n,
|
|
1669
|
+
fill: this.themeConfig.quadrant3Fill
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
text: {
|
|
1673
|
+
text: this.data.quadrant4Text,
|
|
1674
|
+
fill: this.themeConfig.quadrant4TextFill,
|
|
1675
|
+
x: 0,
|
|
1676
|
+
y: 0,
|
|
1677
|
+
fontSize: this.config.quadrantLabelFontSize,
|
|
1678
|
+
verticalPos: "center",
|
|
1679
|
+
horizontalPos: "middle",
|
|
1680
|
+
rotation: 0
|
|
1681
|
+
},
|
|
1682
|
+
x: r + i,
|
|
1683
|
+
y: a + n,
|
|
1684
|
+
width: i,
|
|
1685
|
+
height: n,
|
|
1686
|
+
fill: this.themeConfig.quadrant4Fill
|
|
1687
|
+
}
|
|
1688
|
+
];
|
|
1689
|
+
for (let e of o) e.text.x = e.x + e.width / 2, this.data.points.length === 0 ? (e.text.y = e.y + e.height / 2, e.text.horizontalPos = "middle") : (e.text.y = e.y + this.config.quadrantTextTopPadding, e.text.horizontalPos = "top");
|
|
1690
|
+
return o;
|
|
1691
|
+
}
|
|
1692
|
+
getQuadrantPoints(e) {
|
|
1693
|
+
let { quadrantSpace: t } = e, { quadrantHeight: n, quadrantLeft: r, quadrantTop: i, quadrantWidth: a } = t, o = linear().domain([0, 1]).range([r, a + r]), s = linear().domain([0, 1]).range([n + i, i]);
|
|
1694
|
+
return this.data.points.map((e) => {
|
|
1695
|
+
let t = this.classes.get(e.className);
|
|
1696
|
+
return t && (e = {
|
|
1697
|
+
...t,
|
|
1698
|
+
...e
|
|
1699
|
+
}), {
|
|
1700
|
+
x: o(e.x),
|
|
1701
|
+
y: s(e.y),
|
|
1702
|
+
fill: e.color ?? this.themeConfig.quadrantPointFill,
|
|
1703
|
+
radius: e.radius ?? this.config.pointRadius,
|
|
1704
|
+
text: {
|
|
1705
|
+
text: e.text,
|
|
1706
|
+
fill: this.themeConfig.quadrantPointTextFill,
|
|
1707
|
+
x: o(e.x),
|
|
1708
|
+
y: s(e.y) + this.config.pointTextPadding,
|
|
1709
|
+
verticalPos: "center",
|
|
1710
|
+
horizontalPos: "top",
|
|
1711
|
+
fontSize: this.config.pointLabelFontSize,
|
|
1712
|
+
rotation: 0
|
|
1713
|
+
},
|
|
1714
|
+
strokeColor: e.strokeColor ?? this.themeConfig.quadrantPointFill,
|
|
1715
|
+
strokeWidth: e.strokeWidth ?? "0px"
|
|
1716
|
+
};
|
|
1717
|
+
});
|
|
1718
|
+
}
|
|
1719
|
+
getBorders(e) {
|
|
1720
|
+
let t = this.config.quadrantExternalBorderStrokeWidth / 2, { quadrantSpace: n } = e, { quadrantHalfHeight: r, quadrantHeight: i, quadrantLeft: a, quadrantHalfWidth: o, quadrantTop: s, quadrantWidth: c } = n;
|
|
1721
|
+
return [
|
|
1722
|
+
{
|
|
1723
|
+
strokeFill: this.themeConfig.quadrantExternalBorderStrokeFill,
|
|
1724
|
+
strokeWidth: this.config.quadrantExternalBorderStrokeWidth,
|
|
1725
|
+
x1: a - t,
|
|
1726
|
+
y1: s,
|
|
1727
|
+
x2: a + c + t,
|
|
1728
|
+
y2: s
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
strokeFill: this.themeConfig.quadrantExternalBorderStrokeFill,
|
|
1732
|
+
strokeWidth: this.config.quadrantExternalBorderStrokeWidth,
|
|
1733
|
+
x1: a + c,
|
|
1734
|
+
y1: s + t,
|
|
1735
|
+
x2: a + c,
|
|
1736
|
+
y2: s + i - t
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
strokeFill: this.themeConfig.quadrantExternalBorderStrokeFill,
|
|
1740
|
+
strokeWidth: this.config.quadrantExternalBorderStrokeWidth,
|
|
1741
|
+
x1: a - t,
|
|
1742
|
+
y1: s + i,
|
|
1743
|
+
x2: a + c + t,
|
|
1744
|
+
y2: s + i
|
|
1745
|
+
},
|
|
1746
|
+
{
|
|
1747
|
+
strokeFill: this.themeConfig.quadrantExternalBorderStrokeFill,
|
|
1748
|
+
strokeWidth: this.config.quadrantExternalBorderStrokeWidth,
|
|
1749
|
+
x1: a,
|
|
1750
|
+
y1: s + t,
|
|
1751
|
+
x2: a,
|
|
1752
|
+
y2: s + i - t
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
strokeFill: this.themeConfig.quadrantInternalBorderStrokeFill,
|
|
1756
|
+
strokeWidth: this.config.quadrantInternalBorderStrokeWidth,
|
|
1757
|
+
x1: a + o,
|
|
1758
|
+
y1: s + t,
|
|
1759
|
+
x2: a + o,
|
|
1760
|
+
y2: s + i - t
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
strokeFill: this.themeConfig.quadrantInternalBorderStrokeFill,
|
|
1764
|
+
strokeWidth: this.config.quadrantInternalBorderStrokeWidth,
|
|
1765
|
+
x1: a + t,
|
|
1766
|
+
y1: s + r,
|
|
1767
|
+
x2: a + c - t,
|
|
1768
|
+
y2: s + r
|
|
1769
|
+
}
|
|
1770
|
+
];
|
|
1771
|
+
}
|
|
1772
|
+
getTitle(e) {
|
|
1773
|
+
if (e) return {
|
|
1774
|
+
text: this.data.titleText,
|
|
1775
|
+
fill: this.themeConfig.quadrantTitleFill,
|
|
1776
|
+
fontSize: this.config.titleFontSize,
|
|
1777
|
+
horizontalPos: "top",
|
|
1778
|
+
verticalPos: "center",
|
|
1779
|
+
rotation: 0,
|
|
1780
|
+
y: this.config.titlePadding,
|
|
1781
|
+
x: this.config.chartWidth / 2
|
|
1782
|
+
};
|
|
1783
|
+
}
|
|
1784
|
+
build() {
|
|
1785
|
+
let e = this.config.showXAxis && !!(this.data.xAxisLeftText || this.data.xAxisRightText), t = this.config.showYAxis && !!(this.data.yAxisTopText || this.data.yAxisBottomText), n = this.config.showTitle && !!this.data.titleText, r = this.data.points.length > 0 ? "bottom" : this.config.xAxisPosition, i = this.calculateSpace(r, e, t, n);
|
|
1786
|
+
return {
|
|
1787
|
+
points: this.getQuadrantPoints(i),
|
|
1788
|
+
quadrants: this.getQuadrants(i),
|
|
1789
|
+
axisLabels: this.getAxisLabels(r, e, t, i),
|
|
1790
|
+
borderLines: this.getBorders(i),
|
|
1791
|
+
title: this.getTitle(n)
|
|
1792
|
+
};
|
|
1793
|
+
}
|
|
1794
|
+
}, InvalidStyleError = class extends Error {
|
|
1795
|
+
static #e = __name(this, "InvalidStyleError");
|
|
1796
|
+
constructor(e, t, n) {
|
|
1797
|
+
super(`value for ${e} ${t} is invalid, please use a valid ${n}`), this.name = "InvalidStyleError";
|
|
1798
|
+
}
|
|
1799
|
+
};
|
|
1800
|
+
function validateHexCode(e) {
|
|
1801
|
+
return !/^#?([\dA-Fa-f]{6}|[\dA-Fa-f]{3})$/.test(e);
|
|
1802
|
+
}
|
|
1803
|
+
__name(validateHexCode, "validateHexCode");
|
|
1804
|
+
function validateNumber(e) {
|
|
1805
|
+
return !/^\d+$/.test(e);
|
|
1806
|
+
}
|
|
1807
|
+
__name(validateNumber, "validateNumber");
|
|
1808
|
+
function validateSizeInPixels(e) {
|
|
1809
|
+
return !/^\d+px$/.test(e);
|
|
1810
|
+
}
|
|
1811
|
+
__name(validateSizeInPixels, "validateSizeInPixels");
|
|
1812
|
+
var config = getConfig2();
|
|
1813
|
+
function textSanitizer(e) {
|
|
1814
|
+
return sanitizeText(e.trim(), config);
|
|
1815
|
+
}
|
|
1816
|
+
__name(textSanitizer, "textSanitizer");
|
|
1817
|
+
var quadrantBuilder = new QuadrantBuilder();
|
|
1818
|
+
function setQuadrant1Text(e) {
|
|
1819
|
+
quadrantBuilder.setData({ quadrant1Text: textSanitizer(e.text) });
|
|
1820
|
+
}
|
|
1821
|
+
__name(setQuadrant1Text, "setQuadrant1Text");
|
|
1822
|
+
function setQuadrant2Text(e) {
|
|
1823
|
+
quadrantBuilder.setData({ quadrant2Text: textSanitizer(e.text) });
|
|
1824
|
+
}
|
|
1825
|
+
__name(setQuadrant2Text, "setQuadrant2Text");
|
|
1826
|
+
function setQuadrant3Text(e) {
|
|
1827
|
+
quadrantBuilder.setData({ quadrant3Text: textSanitizer(e.text) });
|
|
1828
|
+
}
|
|
1829
|
+
__name(setQuadrant3Text, "setQuadrant3Text");
|
|
1830
|
+
function setQuadrant4Text(e) {
|
|
1831
|
+
quadrantBuilder.setData({ quadrant4Text: textSanitizer(e.text) });
|
|
1832
|
+
}
|
|
1833
|
+
__name(setQuadrant4Text, "setQuadrant4Text");
|
|
1834
|
+
function setXAxisLeftText(e) {
|
|
1835
|
+
quadrantBuilder.setData({ xAxisLeftText: textSanitizer(e.text) });
|
|
1836
|
+
}
|
|
1837
|
+
__name(setXAxisLeftText, "setXAxisLeftText");
|
|
1838
|
+
function setXAxisRightText(e) {
|
|
1839
|
+
quadrantBuilder.setData({ xAxisRightText: textSanitizer(e.text) });
|
|
1840
|
+
}
|
|
1841
|
+
__name(setXAxisRightText, "setXAxisRightText");
|
|
1842
|
+
function setYAxisTopText(e) {
|
|
1843
|
+
quadrantBuilder.setData({ yAxisTopText: textSanitizer(e.text) });
|
|
1844
|
+
}
|
|
1845
|
+
__name(setYAxisTopText, "setYAxisTopText");
|
|
1846
|
+
function setYAxisBottomText(e) {
|
|
1847
|
+
quadrantBuilder.setData({ yAxisBottomText: textSanitizer(e.text) });
|
|
1848
|
+
}
|
|
1849
|
+
__name(setYAxisBottomText, "setYAxisBottomText");
|
|
1850
|
+
function parseStyles(e) {
|
|
1851
|
+
let t = {};
|
|
1852
|
+
for (let n of e) {
|
|
1853
|
+
let [e, r] = n.trim().split(/\s*:\s*/);
|
|
1854
|
+
if (e === "radius") {
|
|
1855
|
+
if (validateNumber(r)) throw new InvalidStyleError(e, r, "number");
|
|
1856
|
+
t.radius = parseInt(r);
|
|
1857
|
+
} else if (e === "color") {
|
|
1858
|
+
if (validateHexCode(r)) throw new InvalidStyleError(e, r, "hex code");
|
|
1859
|
+
t.color = r;
|
|
1860
|
+
} else if (e === "stroke-color") {
|
|
1861
|
+
if (validateHexCode(r)) throw new InvalidStyleError(e, r, "hex code");
|
|
1862
|
+
t.strokeColor = r;
|
|
1863
|
+
} else if (e === "stroke-width") {
|
|
1864
|
+
if (validateSizeInPixels(r)) throw new InvalidStyleError(e, r, "number of pixels (eg. 10px)");
|
|
1865
|
+
t.strokeWidth = r;
|
|
1866
|
+
} else throw Error(`style named ${e} is not supported.`);
|
|
1867
|
+
}
|
|
1868
|
+
return t;
|
|
1869
|
+
}
|
|
1870
|
+
__name(parseStyles, "parseStyles");
|
|
1871
|
+
function addPoint(e, t, n, r, i) {
|
|
1872
|
+
let a = parseStyles(i);
|
|
1873
|
+
quadrantBuilder.addPoints([{
|
|
1874
|
+
x: n,
|
|
1875
|
+
y: r,
|
|
1876
|
+
text: textSanitizer(e.text),
|
|
1877
|
+
className: t,
|
|
1878
|
+
...a
|
|
1879
|
+
}]);
|
|
1880
|
+
}
|
|
1881
|
+
__name(addPoint, "addPoint");
|
|
1882
|
+
function addClass(e, t) {
|
|
1883
|
+
quadrantBuilder.addClass(e, parseStyles(t));
|
|
1884
|
+
}
|
|
1885
|
+
__name(addClass, "addClass");
|
|
1886
|
+
function setWidth(e) {
|
|
1887
|
+
quadrantBuilder.setConfig({ chartWidth: e });
|
|
1888
|
+
}
|
|
1889
|
+
__name(setWidth, "setWidth");
|
|
1890
|
+
function setHeight(e) {
|
|
1891
|
+
quadrantBuilder.setConfig({ chartHeight: e });
|
|
1892
|
+
}
|
|
1893
|
+
__name(setHeight, "setHeight");
|
|
1894
|
+
function getQuadrantData() {
|
|
1895
|
+
let { themeVariables: e, quadrantChart: t } = getConfig2();
|
|
1896
|
+
return t && quadrantBuilder.setConfig(t), quadrantBuilder.setThemeConfig({
|
|
1897
|
+
quadrant1Fill: e.quadrant1Fill,
|
|
1898
|
+
quadrant2Fill: e.quadrant2Fill,
|
|
1899
|
+
quadrant3Fill: e.quadrant3Fill,
|
|
1900
|
+
quadrant4Fill: e.quadrant4Fill,
|
|
1901
|
+
quadrant1TextFill: e.quadrant1TextFill,
|
|
1902
|
+
quadrant2TextFill: e.quadrant2TextFill,
|
|
1903
|
+
quadrant3TextFill: e.quadrant3TextFill,
|
|
1904
|
+
quadrant4TextFill: e.quadrant4TextFill,
|
|
1905
|
+
quadrantPointFill: e.quadrantPointFill,
|
|
1906
|
+
quadrantPointTextFill: e.quadrantPointTextFill,
|
|
1907
|
+
quadrantXAxisTextFill: e.quadrantXAxisTextFill,
|
|
1908
|
+
quadrantYAxisTextFill: e.quadrantYAxisTextFill,
|
|
1909
|
+
quadrantExternalBorderStrokeFill: e.quadrantExternalBorderStrokeFill,
|
|
1910
|
+
quadrantInternalBorderStrokeFill: e.quadrantInternalBorderStrokeFill,
|
|
1911
|
+
quadrantTitleFill: e.quadrantTitleFill
|
|
1912
|
+
}), quadrantBuilder.setData({ titleText: getDiagramTitle() }), quadrantBuilder.build();
|
|
1913
|
+
}
|
|
1914
|
+
__name(getQuadrantData, "getQuadrantData");
|
|
1915
|
+
var diagram = {
|
|
1916
|
+
parser: quadrant_default,
|
|
1917
|
+
db: {
|
|
1918
|
+
setWidth,
|
|
1919
|
+
setHeight,
|
|
1920
|
+
setQuadrant1Text,
|
|
1921
|
+
setQuadrant2Text,
|
|
1922
|
+
setQuadrant3Text,
|
|
1923
|
+
setQuadrant4Text,
|
|
1924
|
+
setXAxisLeftText,
|
|
1925
|
+
setXAxisRightText,
|
|
1926
|
+
setYAxisTopText,
|
|
1927
|
+
setYAxisBottomText,
|
|
1928
|
+
parseStyles,
|
|
1929
|
+
addPoint,
|
|
1930
|
+
addClass,
|
|
1931
|
+
getQuadrantData,
|
|
1932
|
+
clear: /* @__PURE__ */ __name(function() {
|
|
1933
|
+
quadrantBuilder.clear(), clear();
|
|
1934
|
+
}, "clear"),
|
|
1935
|
+
setAccTitle,
|
|
1936
|
+
getAccTitle,
|
|
1937
|
+
setDiagramTitle,
|
|
1938
|
+
getDiagramTitle,
|
|
1939
|
+
getAccDescription,
|
|
1940
|
+
setAccDescription
|
|
1941
|
+
},
|
|
1942
|
+
renderer: { draw: /* @__PURE__ */ __name((n, i, a, o) => {
|
|
1943
|
+
function c(e) {
|
|
1944
|
+
return e === "top" ? "hanging" : "middle";
|
|
1945
|
+
}
|
|
1946
|
+
__name(c, "getDominantBaseLine");
|
|
1947
|
+
function l(e) {
|
|
1948
|
+
return e === "left" ? "start" : "middle";
|
|
1949
|
+
}
|
|
1950
|
+
__name(l, "getTextAnchor");
|
|
1951
|
+
function u(e) {
|
|
1952
|
+
return `translate(${e.x}, ${e.y}) rotate(${e.rotation || 0})`;
|
|
1953
|
+
}
|
|
1954
|
+
__name(u, "getTransformation");
|
|
1955
|
+
let d = getConfig2();
|
|
1956
|
+
log.debug("Rendering quadrant chart\n" + n);
|
|
1957
|
+
let f = d.securityLevel, p;
|
|
1958
|
+
f === "sandbox" && (p = select_default("#i" + i));
|
|
1959
|
+
let h = select_default(f === "sandbox" ? p.nodes()[0].contentDocument.body : "body").select(`[id="${i}"]`), g = h.append("g").attr("class", "main"), _ = d.quadrantChart?.chartWidth ?? 500, v = d.quadrantChart?.chartHeight ?? 500;
|
|
1960
|
+
configureSvgSize(h, v, _, d.quadrantChart?.useMaxWidth ?? !0), h.attr("viewBox", "0 0 " + _ + " " + v), o.db.setHeight(v), o.db.setWidth(_);
|
|
1961
|
+
let y = o.db.getQuadrantData(), b = g.append("g").attr("class", "quadrants"), x = g.append("g").attr("class", "border"), S = g.append("g").attr("class", "data-points"), C = g.append("g").attr("class", "labels"), w = g.append("g").attr("class", "title");
|
|
1962
|
+
y.title && w.append("text").attr("x", 0).attr("y", 0).attr("fill", y.title.fill).attr("font-size", y.title.fontSize).attr("dominant-baseline", c(y.title.horizontalPos)).attr("text-anchor", l(y.title.verticalPos)).attr("transform", u(y.title)).text(y.title.text), y.borderLines && x.selectAll("line").data(y.borderLines).enter().append("line").attr("x1", (e) => e.x1).attr("y1", (e) => e.y1).attr("x2", (e) => e.x2).attr("y2", (e) => e.y2).style("stroke", (e) => e.strokeFill).style("stroke-width", (e) => e.strokeWidth);
|
|
1963
|
+
let T = b.selectAll("g.quadrant").data(y.quadrants).enter().append("g").attr("class", "quadrant");
|
|
1964
|
+
T.append("rect").attr("x", (e) => e.x).attr("y", (e) => e.y).attr("width", (e) => e.width).attr("height", (e) => e.height).attr("fill", (e) => e.fill), T.append("text").attr("x", 0).attr("y", 0).attr("fill", (e) => e.text.fill).attr("font-size", (e) => e.text.fontSize).attr("dominant-baseline", (e) => c(e.text.horizontalPos)).attr("text-anchor", (e) => l(e.text.verticalPos)).attr("transform", (e) => u(e.text)).text((e) => e.text.text), C.selectAll("g.label").data(y.axisLabels).enter().append("g").attr("class", "label").append("text").attr("x", 0).attr("y", 0).text((e) => e.text).attr("fill", (e) => e.fill).attr("font-size", (e) => e.fontSize).attr("dominant-baseline", (e) => c(e.horizontalPos)).attr("text-anchor", (e) => l(e.verticalPos)).attr("transform", (e) => u(e));
|
|
1965
|
+
let E = S.selectAll("g.data-point").data(y.points).enter().append("g").attr("class", "data-point");
|
|
1966
|
+
E.append("circle").attr("cx", (e) => e.x).attr("cy", (e) => e.y).attr("r", (e) => e.radius).attr("fill", (e) => e.fill).attr("stroke", (e) => e.strokeColor).attr("stroke-width", (e) => e.strokeWidth), E.append("text").attr("x", 0).attr("y", 0).text((e) => e.text.text).attr("fill", (e) => e.text.fill).attr("font-size", (e) => e.text.fontSize).attr("dominant-baseline", (e) => c(e.text.horizontalPos)).attr("text-anchor", (e) => l(e.text.verticalPos)).attr("transform", (e) => u(e.text));
|
|
1967
|
+
}, "draw") },
|
|
1968
|
+
styles: /* @__PURE__ */ __name(() => "", "styles")
|
|
1969
|
+
};
|
|
1970
|
+
export { diagram };
|