@pygmalionjs/pygmalion 0.5.14 → 0.5.16

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 (112) hide show
  1. package/dist-lib/{FrozenRoutePreview-BR5CBAD3.js → FrozenRoutePreview-CZOpvN6z.js} +1545 -1515
  2. package/dist-lib/pygmalion.js +5034 -4955
  3. package/dist-lib/testing.js +1 -1
  4. package/dist-lib/types/App.d.ts +5 -0
  5. package/dist-lib/types/canvas/CameraLayer.d.ts +9 -0
  6. package/dist-lib/types/canvas/Canvas.d.ts +19 -0
  7. package/dist-lib/types/canvas/FrameLabelBanner.d.ts +7 -0
  8. package/dist-lib/types/canvas/FrameView.d.ts +9 -0
  9. package/dist-lib/types/canvas/FrozenRoutePreview.d.ts +12 -0
  10. package/dist-lib/types/canvas/InspectOverlay.d.ts +10 -0
  11. package/dist-lib/types/canvas/LightweightCanvas.d.ts +10 -0
  12. package/dist-lib/types/canvas/ObjectControls.d.ts +22 -0
  13. package/dist-lib/types/canvas/Preview.d.ts +3 -0
  14. package/dist-lib/types/canvas/SectionBoxes.d.ts +24 -0
  15. package/dist-lib/types/canvas/ShadowRoutePreview.d.ts +14 -0
  16. package/dist-lib/types/canvas/StoryboardConnections.d.ts +31 -0
  17. package/dist-lib/types/canvas/cameraPlacement.d.ts +45 -0
  18. package/dist-lib/types/canvas/domTags.d.ts +10 -0
  19. package/dist-lib/types/canvas/layoutContext.d.ts +9 -0
  20. package/dist-lib/types/canvas/useFlowSession.d.ts +36 -0
  21. package/dist-lib/types/canvas/useFrameLod.d.ts +35 -0
  22. package/dist-lib/types/editor/adaptiveFrameLayout.d.ts +67 -0
  23. package/dist-lib/types/editor/assetEditing.d.ts +10 -0
  24. package/dist-lib/types/editor/bannerStyle.d.ts +18 -0
  25. package/dist-lib/types/editor/catalog.d.ts +101 -0
  26. package/dist-lib/types/editor/codegen.d.ts +11 -0
  27. package/dist-lib/types/editor/componentConnections.d.ts +63 -0
  28. package/dist-lib/types/editor/componentInstances.d.ts +27 -0
  29. package/dist-lib/types/editor/contentBounds.d.ts +34 -0
  30. package/dist-lib/types/editor/designCompiler.d.ts +100 -0
  31. package/dist-lib/types/editor/designImport.d.ts +448 -0
  32. package/dist-lib/types/editor/documentSync.d.ts +28 -0
  33. package/dist-lib/types/editor/domImport.d.ts +58 -0
  34. package/dist-lib/types/editor/editModePolicy.d.ts +17 -0
  35. package/dist-lib/types/editor/fiberMap.d.ts +16 -0
  36. package/dist-lib/types/editor/flowSessionScheduler.d.ts +97 -0
  37. package/dist-lib/types/editor/flowSessions.d.ts +137 -0
  38. package/dist-lib/types/editor/frameHeight.d.ts +14 -0
  39. package/dist-lib/types/editor/frameIdentity.d.ts +9 -0
  40. package/dist-lib/types/editor/frameLabels.d.ts +124 -0
  41. package/dist-lib/types/editor/frameLanes.d.ts +62 -0
  42. package/dist-lib/types/editor/frameLod.d.ts +123 -0
  43. package/dist-lib/types/editor/frameLodRuntime.d.ts +64 -0
  44. package/dist-lib/types/editor/framePointerHit.d.ts +67 -0
  45. package/dist-lib/types/editor/framePointerIntent.d.ts +53 -0
  46. package/dist-lib/types/editor/framePreviewChannels.d.ts +26 -0
  47. package/dist-lib/types/editor/framePreviewKeys.d.ts +21 -0
  48. package/dist-lib/types/editor/frameWheelRouting.d.ts +16 -0
  49. package/dist-lib/types/editor/frozenImport.d.ts +70 -0
  50. package/dist-lib/types/editor/host.d.ts +133 -0
  51. package/dist-lib/types/editor/inspect.d.ts +225 -0
  52. package/dist-lib/types/editor/interactiveStates.d.ts +103 -0
  53. package/dist-lib/types/editor/livePreviewInstances.d.ts +93 -0
  54. package/dist-lib/types/editor/liveScreens.d.ts +20 -0
  55. package/dist-lib/types/editor/nodeSelector.d.ts +20 -0
  56. package/dist-lib/types/editor/previewBootstrap.d.ts +189 -0
  57. package/dist-lib/types/editor/previewEnvironmentControls.d.ts +33 -0
  58. package/dist-lib/types/editor/previewHydration.d.ts +5 -0
  59. package/dist-lib/types/editor/previewIntent.d.ts +17 -0
  60. package/dist-lib/types/editor/previewSweep.d.ts +129 -0
  61. package/dist-lib/types/editor/previewWarmup.d.ts +77 -0
  62. package/dist-lib/types/editor/projectBootGate.d.ts +45 -0
  63. package/dist-lib/types/editor/projectRuntime.d.ts +138 -0
  64. package/dist-lib/types/editor/registry.d.ts +38 -0
  65. package/dist-lib/types/editor/routePreview.d.ts +285 -0
  66. package/dist-lib/types/editor/routePreviewArtifactV2.d.ts +34 -0
  67. package/dist-lib/types/editor/routePreviewArtifactV3.d.ts +64 -0
  68. package/dist-lib/types/editor/routePreviewPlacement.d.ts +9 -0
  69. package/dist-lib/types/editor/routePreviewStatus.d.ts +48 -0
  70. package/dist-lib/types/editor/scenarioCoverage.d.ts +167 -0
  71. package/dist-lib/types/editor/screenCards.d.ts +101 -0
  72. package/dist-lib/types/editor/screenDimensions.d.ts +63 -0
  73. package/dist-lib/types/editor/screenFlows.d.ts +47 -0
  74. package/dist-lib/types/editor/screenInteractions.d.ts +4 -0
  75. package/dist-lib/types/editor/screenLists.d.ts +40 -0
  76. package/dist-lib/types/editor/screenStateGroups.d.ts +36 -0
  77. package/dist-lib/types/editor/screenshotBitmaps.d.ts +20 -0
  78. package/dist-lib/types/editor/sectionHeaders.d.ts +117 -0
  79. package/dist-lib/types/editor/shadowPreview.d.ts +103 -0
  80. package/dist-lib/types/editor/sharedSource.d.ts +40 -0
  81. package/dist-lib/types/editor/sourceJournal.d.ts +27 -0
  82. package/dist-lib/types/editor/store.d.ts +838 -0
  83. package/dist-lib/types/editor/storyboardComposition.d.ts +116 -0
  84. package/dist-lib/types/editor/storyboardDiscovery.d.ts +105 -0
  85. package/dist-lib/types/editor/storyboardEnvironment.d.ts +22 -0
  86. package/dist-lib/types/editor/storyboardGraph.d.ts +120 -0
  87. package/dist-lib/types/editor/storyboardGraphRuntime.d.ts +12 -0
  88. package/dist-lib/types/editor/storyboardGraphView.d.ts +104 -0
  89. package/dist-lib/types/editor/surfaceDemands.d.ts +138 -0
  90. package/dist-lib/types/editor/tokens.d.ts +26 -0
  91. package/dist-lib/types/editor/useObserved.d.ts +1 -0
  92. package/dist-lib/types/editor/viewportPresets.d.ts +21 -0
  93. package/dist-lib/types/editor/visualQa.d.ts +50 -0
  94. package/dist-lib/types/lib.d.ts +365 -0
  95. package/dist-lib/types/shell/ApplyPanel.d.ts +1 -0
  96. package/dist-lib/types/shell/AssetsPanel.d.ts +3 -0
  97. package/dist-lib/types/shell/CanvasStatusProbe.d.ts +5 -0
  98. package/dist-lib/types/shell/CodePanel.d.ts +1 -0
  99. package/dist-lib/types/shell/ComponentStateControls.d.ts +108 -0
  100. package/dist-lib/types/shell/ContextMenu.d.ts +1 -0
  101. package/dist-lib/types/shell/LayerTree.d.ts +7 -0
  102. package/dist-lib/types/shell/PropsPanel.d.ts +1 -0
  103. package/dist-lib/types/shell/StoryboardGraphPanel.d.ts +23 -0
  104. package/dist-lib/types/shell/ZoomIndicator.d.ts +4 -0
  105. package/dist-lib/types/shell/qaPresentation.d.ts +9 -0
  106. package/dist-lib/types/testing.d.ts +8 -0
  107. package/dist-lib/types/ui/SourceRefControl.d.ts +38 -0
  108. package/dist-lib/types/ui/icons.d.ts +30 -0
  109. package/node/dev-mirror.mjs +63 -17
  110. package/package.json +7 -8
  111. package/testing.d.ts +0 -26
  112. package/types.d.ts +0 -2675

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.