cubing 0.60.0 → 0.61.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.
Files changed (36) hide show
  1. package/dist/lib/cubing/alg/index.d.ts +2 -2
  2. package/dist/lib/cubing/bluetooth/index.d.ts +3 -3
  3. package/dist/lib/cubing/{bluetooth-puzzle-CN0X1-Rm.d.ts → bluetooth-puzzle-gTRbIRyj.d.ts} +1 -1
  4. package/dist/lib/cubing/chunks/{chunk-QDEGPHPS.js → chunk-FKKRSXUI.js} +2 -2
  5. package/dist/lib/cubing/chunks/chunk-FKKRSXUI.js.map +7 -0
  6. package/dist/lib/cubing/chunks/{chunk-UWBMBZER.js → chunk-RKTO4CAU.js} +5 -5
  7. package/dist/lib/cubing/chunks/{chunk-UWBMBZER.js.map → chunk-RKTO4CAU.js.map} +2 -2
  8. package/dist/lib/cubing/chunks/{inside-7R2QE4L7.js → inside-PM6546BQ.js} +12 -12
  9. package/dist/lib/cubing/chunks/inside-PM6546BQ.js.map +7 -0
  10. package/dist/lib/cubing/chunks/{search-dynamic-solve-4x4x4-YZ3W3BZR.js → search-dynamic-solve-4x4x4-IE5W637Q.js} +2 -2
  11. package/dist/lib/cubing/chunks/search-worker-entry.js +1 -1
  12. package/dist/lib/cubing/chunks/{twsearch-SXB7BAMF.js → twips-UDB2NAAU.js} +37 -37
  13. package/dist/lib/cubing/chunks/twips-UDB2NAAU.js.map +7 -0
  14. package/dist/lib/cubing/chunks/twips_wasm_bg-TPXD7W4R-2BXON3G5.js +10 -0
  15. package/dist/lib/cubing/chunks/twips_wasm_bg-TPXD7W4R-2BXON3G5.js.map +7 -0
  16. package/dist/lib/cubing/{index-BFw0u55q.d.ts → index-CORXpckt.d.ts} +4 -4
  17. package/dist/lib/cubing/kpuzzle/index.d.ts +1 -1
  18. package/dist/lib/cubing/notation/index.d.ts +1 -1
  19. package/dist/lib/cubing/protocol/index.d.ts +1 -1
  20. package/dist/lib/cubing/puzzle-geometry/index.d.ts +2 -2
  21. package/dist/lib/cubing/puzzles/index.d.ts +1 -1
  22. package/dist/lib/cubing/scramble/index.d.ts +2 -2
  23. package/dist/lib/cubing/scramble/index.js +1 -1
  24. package/dist/lib/cubing/search/index.d.ts +7 -3
  25. package/dist/lib/cubing/search/index.js +12 -3
  26. package/dist/lib/cubing/search/index.js.map +3 -3
  27. package/dist/lib/cubing/stream/index.d.ts +2 -2
  28. package/dist/lib/cubing/twisty/index.d.ts +2 -2
  29. package/package.json +10 -8
  30. package/dist/lib/cubing/chunks/chunk-QDEGPHPS.js.map +0 -7
  31. package/dist/lib/cubing/chunks/inside-7R2QE4L7.js.map +0 -7
  32. package/dist/lib/cubing/chunks/twsearch-SXB7BAMF.js.map +0 -7
  33. package/dist/lib/cubing/chunks/twsearch_wasm_bg-2J7XXRGI-WOU3FVAE.js +0 -10
  34. package/dist/lib/cubing/chunks/twsearch_wasm_bg-2J7XXRGI-WOU3FVAE.js.map +0 -7
  35. package/dist/lib/cubing/{PuzzleLoader-ApHCdGgn.d.ts → KPattern-CU9Suh1T.d.ts} +20 -20
  36. /package/dist/lib/cubing/chunks/{search-dynamic-solve-4x4x4-YZ3W3BZR.js.map → search-dynamic-solve-4x4x4-IE5W637Q.js.map} +0 -0
@@ -879,26 +879,6 @@ declare class KPuzzle {
879
879
  canConvertDefaultPatternToUniqueTransformation(): boolean;
880
880
  }
881
881
 
882
- declare class KPattern {
883
- readonly kpuzzle: KPuzzle;
884
- readonly patternData: KPatternData;
885
- constructor(kpuzzle: KPuzzle, patternData: KPatternData);
886
- toJSON(): any;
887
- static fromTransformation(transformation: KTransformation): KPattern;
888
- /** @deprecated */
889
- apply(source: KTransformationSource): KPattern;
890
- applyTransformation(transformation: KTransformation): KPattern;
891
- applyMove(move: Move | string): KPattern;
892
- applyAlg(alg: Alg | string): KPattern;
893
- isIdentical(other: KPattern): boolean;
894
- /** @deprecated */
895
- experimentalToTransformation(): KTransformation | null;
896
- experimentalIsSolved(options: {
897
- ignorePuzzleOrientation: boolean;
898
- ignoreCenterOrientation: boolean;
899
- }): boolean;
900
- }
901
-
902
882
  type MillisecondTimestamp = Tagged<DOMHighResTimeStamp, "MillisecondTimestamp">;
903
883
  type MillisecondDuration = Tagged<number, "MillisecondDuration">;
904
884
  declare enum Direction {
@@ -2342,4 +2322,24 @@ interface PuzzleLoader {
2342
2322
  algTransformData?: AlgTransformData;
2343
2323
  }
2344
2324
 
2325
+ declare class KPattern {
2326
+ readonly kpuzzle: KPuzzle;
2327
+ readonly patternData: KPatternData;
2328
+ constructor(kpuzzle: KPuzzle, patternData: KPatternData);
2329
+ toJSON(): any;
2330
+ static fromTransformation(transformation: KTransformation): KPattern;
2331
+ /** @deprecated */
2332
+ apply(source: KTransformationSource): KPattern;
2333
+ applyTransformation(transformation: KTransformation): KPattern;
2334
+ applyMove(move: Move | string): KPattern;
2335
+ applyAlg(alg: Alg | string): KPattern;
2336
+ isIdentical(other: KPattern): boolean;
2337
+ /** @deprecated */
2338
+ experimentalToTransformation(): KTransformation | null;
2339
+ experimentalIsSolved(options: {
2340
+ ignorePuzzleOrientation: boolean;
2341
+ ignoreCenterOrientation: boolean;
2342
+ }): boolean;
2343
+ }
2344
+
2345
2345
  export { Newline as $, type AlgLeaf as A, type MillisecondTimestamp as B, type LeafIndex as C, KTransformation as D, type ExperimentalStickering as E, type MillisecondDuration as F, type BackViewLayout as G, backViewLayouts as H, TwistyAlgViewer as I, type TwistyPlayerConfig as J, KPattern as K, type LeafCount as L, Move as M, NO_VALUE as N, TwistyPlayer as O, Perm as P, Quat as Q, TwizzleLink as R, type StickerDat as S, TwistyAlgEditor as T, type AlgNode as U, type VisualizationFormat as V, type AppendOptions as W, Grouping as X, LineComment as Y, Commutator as Z, Conjugate as _, type PuzzleGeometryOptions as a, Pause as a0, type KeyMapping as a1, type AlgBranch as a2, type GroupingModifications as a3, type MoveModifications as a4, type Parsed as a5, type ExperimentalNotationType as a6, type ExperimentalSerializationOptions as a7, type AppendCancelOptions as a8, type SimplifyOptions as a9, QuantumMove as aa, type KPatternData as ab, type KPatternOrbitData as ac, type KPuzzleDefinition as ad, type KTransformationData as ae, type KTransformationOrbitData as af, type StickerDatAxis as b, type StickerDatFace as c, type StickerDatSticker as d, getPuzzleDescriptionString as e, getPuzzleGeometryByDesc as f, getPG3DNamedPuzzles as g, getPuzzleGeometryByName as h, PGNotation as i, PUZZLE_BASE_SHAPES as j, PUZZLE_CUT_TYPES as k, type PuzzleBaseShape as l, type PuzzleCutDescription as m, type PuzzleCutType as n, type PuzzleDescription as o, parseOptions as p, PuzzleGeometry as q, parsePuzzleDescription as r, Alg as s, type PuzzleLoader as t, type PuzzleID as u, KPuzzle as v, type StickeringMask as w, type PuzzleSpecificSimplifyOptions as x, type AlgTransformData as y, type AlgIndexer as z };