cubing 0.46.0 → 0.46.1
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/lib/cubing/{TwizzleLink.d-nUoRT8X-.d.ts → TwizzleLink.d--nbVCWjc.d.ts} +0 -2
- package/dist/lib/cubing/chunks/{chunk-M65YYSXA.js → chunk-EYGOBNCB.js} +2 -2
- package/dist/lib/cubing/chunks/{twisty-dynamic-3d-Z7DZPPGE.js → twisty-dynamic-3d-3YOX4DSN.js} +10 -10
- package/dist/lib/cubing/chunks/{twisty-dynamic-3d-Z7DZPPGE.js.map → twisty-dynamic-3d-3YOX4DSN.js.map} +2 -2
- package/dist/lib/cubing/notation/index.d.ts +1 -1
- package/dist/lib/cubing/puzzles/index.d.ts +1 -1
- package/dist/lib/cubing/twisty/index.d.ts +2 -2
- package/dist/lib/cubing/twisty/index.js +8 -8
- package/dist/lib/cubing/twisty/index.js.map +2 -2
- package/package.json +2 -2
- /package/dist/lib/cubing/chunks/{chunk-M65YYSXA.js.map → chunk-EYGOBNCB.js.map} +0 -0
|
@@ -1361,9 +1361,7 @@ declare class TwizzleLink extends ManagedCustomElement {
|
|
|
1361
1361
|
cdnForumTweaks?: boolean | undefined;
|
|
1362
1362
|
colorScheme?: ColorSchemeWithAuto | undefined;
|
|
1363
1363
|
} | undefined);
|
|
1364
|
-
fallback(): void;
|
|
1365
1364
|
connectedCallback(): Promise<void>;
|
|
1366
|
-
addHeading(text: string, getTextToCopy?: () => Promise<string | null>): HTMLElement;
|
|
1367
1365
|
}
|
|
1368
1366
|
declare global {
|
|
1369
1367
|
interface HTMLElementTagNameMap {
|
|
@@ -537,7 +537,7 @@ var StatsPanel = class {
|
|
|
537
537
|
// src/cubing/twisty/heavy-code-imports/3d.ts
|
|
538
538
|
var cachedConstructorProxy = null;
|
|
539
539
|
async function proxy3D() {
|
|
540
|
-
return cachedConstructorProxy ??= import("./twisty-dynamic-3d-
|
|
540
|
+
return cachedConstructorProxy ??= import("./twisty-dynamic-3d-3YOX4DSN.js");
|
|
541
541
|
}
|
|
542
542
|
var THREEJS = from(
|
|
543
543
|
async () => (await proxy3D()).T3I
|
|
@@ -1164,4 +1164,4 @@ export {
|
|
|
1164
1164
|
proxy3D,
|
|
1165
1165
|
THREEJS
|
|
1166
1166
|
};
|
|
1167
|
-
//# sourceMappingURL=chunk-
|
|
1167
|
+
//# sourceMappingURL=chunk-EYGOBNCB.js.map
|
package/dist/lib/cubing/chunks/{twisty-dynamic-3d-Z7DZPPGE.js → twisty-dynamic-3d-3YOX4DSN.js}
RENAMED
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
THREEJS,
|
|
4
4
|
haveStartedSharingRenderers,
|
|
5
5
|
hintFaceletStyles
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-EYGOBNCB.js";
|
|
7
7
|
import {
|
|
8
8
|
cube3x3x3
|
|
9
9
|
} from "./chunk-6GHNIWHB.js";
|
|
@@ -1638,17 +1638,17 @@ var PG3D = class extends Object3D2 {
|
|
|
1638
1638
|
}
|
|
1639
1639
|
if (this.#pendingStickeringUpdate || colormods) {
|
|
1640
1640
|
if (this.textured) {
|
|
1641
|
-
this.fixedGeo.getAttribute("uv").
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1641
|
+
this.fixedGeo.getAttribute("uv").addUpdateRange(
|
|
1642
|
+
0,
|
|
1643
|
+
6 * this.foundationBound
|
|
1644
|
+
);
|
|
1645
1645
|
this.fixedGeo.getAttribute("uv").needsUpdate = true;
|
|
1646
1646
|
}
|
|
1647
1647
|
if (this.#pendingStickeringUpdate || !this.textured) {
|
|
1648
|
-
this.fixedGeo.getAttribute("color").
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1648
|
+
this.fixedGeo.getAttribute("color").addUpdateRange(
|
|
1649
|
+
0,
|
|
1650
|
+
9 * this.foundationBound
|
|
1651
|
+
);
|
|
1652
1652
|
this.fixedGeo.getAttribute("color").needsUpdate = true;
|
|
1653
1653
|
}
|
|
1654
1654
|
}
|
|
@@ -1849,4 +1849,4 @@ export {
|
|
|
1849
1849
|
cube3DShim,
|
|
1850
1850
|
pg3dShim
|
|
1851
1851
|
};
|
|
1852
|
-
//# sourceMappingURL=twisty-dynamic-3d-
|
|
1852
|
+
//# sourceMappingURL=twisty-dynamic-3d-3YOX4DSN.js.map
|