@pie-element/multi-trait-rubric 8.1.2-next.5 → 8.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/index.d.ts +1 -0
- package/dist/author/index.js +5 -2
- package/dist/author/main.js +2 -2
- package/dist/author/scale.js +2 -2
- package/dist/author/traitsHeader.js +1 -1
- package/dist/browser/{Typography-Boz3OA7y.js → Typography-CcoC1x2M.js} +1875 -1866
- package/dist/browser/Typography-CcoC1x2M.js.map +1 -0
- package/dist/browser/author/index.js +24180 -27389
- package/dist/browser/author/index.js.map +1 -1
- package/dist/browser/controller/index.js.map +1 -1
- package/dist/browser/delivery/index.js +71 -53
- package/dist/browser/delivery/index.js.map +1 -1
- package/dist/delivery/index.d.ts +3 -0
- package/dist/delivery/index.js +24 -6
- package/dist/index.iife.js +31 -31
- package/package.json +10 -5
- package/dist/browser/Typography-Boz3OA7y.js.map +0 -1
package/dist/author/index.d.ts
CHANGED
package/dist/author/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import e from "./defaults.js";
|
|
2
2
|
import { excludeZeroTypes as t } from "./modals.js";
|
|
3
3
|
import { addOrRemoveScaleColumn as n } from "./utils.js";
|
|
4
|
-
import r from "./main.js";
|
|
4
|
+
import { Main as r } from "./main.js";
|
|
5
5
|
import i from "react";
|
|
6
6
|
import { createRoot as a } from "react-dom/client";
|
|
7
7
|
import { DeleteImageEvent as o, DeleteSoundEvent as s, InsertImageEvent as c, InsertSoundEvent as l, ModelUpdatedEvent as u } from "@pie-element/shared-configure-events";
|
|
@@ -81,8 +81,11 @@ var d = (t) => ({
|
|
|
81
81
|
this._root ||= a(this), this._root.render(e);
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
|
+
connectedCallback() {
|
|
85
|
+
this._render();
|
|
86
|
+
}
|
|
84
87
|
disconnectedCallback() {
|
|
85
|
-
this._root
|
|
88
|
+
this._root &&= (this._root.unmount(), null);
|
|
86
89
|
}
|
|
87
90
|
};
|
|
88
91
|
//#endregion
|
package/dist/author/main.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ExcludeZeroDialog as e, IncludeZeroDialog as t, InfoDialog as n, excludeZeroTypes as r } from "./modals.js";
|
|
2
2
|
import { addOrRemoveScaleColumn as i } from "./utils.js";
|
|
3
3
|
import { MultiTraitButton as a } from "./common.js";
|
|
4
|
-
import o from "./scale.js";
|
|
4
|
+
import { Scale as o } from "./scale.js";
|
|
5
5
|
import s from "react";
|
|
6
6
|
import c from "prop-types";
|
|
7
7
|
import { styled as l } from "@mui/material/styles";
|
|
@@ -244,4 +244,4 @@ S.propTypes = {
|
|
|
244
244
|
})
|
|
245
245
|
};
|
|
246
246
|
//#endregion
|
|
247
|
-
export { S as default };
|
|
247
|
+
export { S as Main, S as default };
|
package/dist/author/scale.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DecreaseMaxPoints as e, DeleteScale as t, DeleteTrait as n, InfoDialog as r } from "./modals.js";
|
|
2
2
|
import { Arrow as i, MultiTraitButton as a } from "./common.js";
|
|
3
|
-
import o from "./traitsHeader.js";
|
|
3
|
+
import { TraitsHeaderTile as o } from "./traitsHeader.js";
|
|
4
4
|
import s from "./trait.js";
|
|
5
5
|
import c from "react";
|
|
6
6
|
import l from "prop-types";
|
|
@@ -277,4 +277,4 @@ v.propTypes = {
|
|
|
277
277
|
labelPluginProps: l.object
|
|
278
278
|
};
|
|
279
279
|
//#endregion
|
|
280
|
-
export { v as default };
|
|
280
|
+
export { v as Scale, v as default };
|