@pie-element/graphing-solution-set 6.1.2-next.4 → 6.1.2-next.6
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/author/configure.js +3 -3
- package/dist/author/correct-response.js +1 -1
- package/dist/author/graphing-config.js +1 -1
- package/dist/author/index.d.ts +1 -0
- package/dist/author/index.js +5 -2
- package/dist/author/utils.js +1 -1
- package/dist/browser/{dist-DwjthPEk.js → alert-dialog-Ddk9X-Wg.js} +27292 -32389
- package/dist/browser/alert-dialog-Ddk9X-Wg.js.map +1 -0
- package/dist/browser/author/index.js +2220 -334
- package/dist/browser/author/index.js.map +1 -1
- package/dist/browser/{browser-DP-DH6tw.js → browser-BQg8KPEc.js} +2 -2
- package/dist/browser/browser-BQg8KPEc.js.map +1 -0
- package/dist/browser/controller/index.js +1 -1
- package/dist/browser/controller/index.js.map +1 -1
- package/dist/browser/delivery/index.js +39 -40
- package/dist/browser/delivery/index.js.map +1 -1
- package/dist/controller/utils.js +1 -1
- package/dist/delivery/index.js +2 -2
- package/dist/delivery/main.js +1 -1
- package/dist/index.iife.js +108 -112
- package/package.json +12 -7
- package/dist/browser/browser-DP-DH6tw.js.map +0 -1
- package/dist/browser/dist-DwjthPEk.js.map +0 -1
package/dist/author/configure.js
CHANGED
|
@@ -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 };
|
package/dist/author/index.d.ts
CHANGED
package/dist/author/index.js
CHANGED
|
@@ -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
|
|
86
|
+
this._root &&= (this._root.unmount(), null);
|
|
84
87
|
}
|
|
85
88
|
};
|
|
86
89
|
//#endregion
|
package/dist/author/utils.js
CHANGED
|
@@ -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 };
|