@pie-element/graphing-solution-set 6.1.2-next.1 → 6.1.2-next.10

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.
@@ -1,5 +1,5 @@
1
- import e from "./graphing-config.js";
2
- import t from "./correct-response.js";
1
+ import { GraphingConfig as e } from "./graphing-config.js";
2
+ import { CorrectResponse as t } from "./correct-response.js";
3
3
  import n from "react";
4
4
  import r from "prop-types";
5
5
  import { styled as i } from "@mui/material/styles";
@@ -187,4 +187,4 @@ var y = i(s)(({ theme: e }) => ({
187
187
  }
188
188
  };
189
189
  //#endregion
190
- export { x as default };
190
+ export { x as Configure, x as default };
@@ -203,4 +203,4 @@ var h = a(f)(({ theme: e }) => ({
203
203
  }
204
204
  };
205
205
  //#endregion
206
- export { y as default };
206
+ export { y as CorrectResponse, y as default };
@@ -234,4 +234,4 @@ var v = o("div")(({ theme: e }) => ({
234
234
  }
235
235
  };
236
236
  //#endregion
237
- export { T as default };
237
+ export { T as GraphingConfig, T as default };
@@ -58,5 +58,6 @@ export default class GraphLinesConfigure extends HTMLElement {
58
58
  insertSound(handler: any): void;
59
59
  onDeleteSound(src: any, done: any): void;
60
60
  _render(): void;
61
+ connectedCallback(): void;
61
62
  disconnectedCallback(): void;
62
63
  }
@@ -1,4 +1,4 @@
1
- import e from "./configure.js";
1
+ import { Configure as e } from "./configure.js";
2
2
  import t from "./defaults.js";
3
3
  import n from "react";
4
4
  import { createRoot as r } from "react-dom/client";
@@ -79,8 +79,11 @@ var d = a("pie-elements:graphing-solution-set:configure"), f = (e) => Object.key
79
79
  });
80
80
  }
81
81
  }
82
+ connectedCallback() {
83
+ this._render();
84
+ }
82
85
  disconnectedCallback() {
83
- this._root && this._root.unmount();
86
+ this._root &&= (this._root.unmount(), null);
84
87
  }
85
88
  };
86
89
  //#endregion
@@ -471,4 +471,4 @@ var t = [
471
471
  else return !t[1].building;
472
472
  };
473
473
  //#endregion
474
- export { o as applyConstraints, E as checkIfLinesAreAdded, c as filterPlotableMarks, w as findSectionsInSolutionSet, i as getGridValues, a as getLabelValues, T as pointInsidePolygon };
474
+ export { r as VALID_LABEL_VALUES, o as applyConstraints, E as checkIfLinesAreAdded, c as filterPlotableMarks, w as findSectionsInSolutionSet, i as getGridValues, a as getLabelValues, T as pointInsidePolygon };