Skip to content

Commit

Permalink
import kite files from imports.ts, phetsims/kite#96
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Mar 4, 2022
1 parent 9e5afeb commit 73c8198
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 22 deletions.
2 changes: 1 addition & 1 deletion js/building/view/NumberGroupNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import DerivedProperty from '../../../../axon/js/DerivedProperty.js';
import Property from '../../../../axon/js/Property.js';
import Vector2 from '../../../../dot/js/Vector2.js';
import Shape from '../../../../kite/js/Shape.js';
import { Shape } from '../../../../kite/js/imports.js';
import merge from '../../../../phet-core/js/merge.js';
import { Line } from '../../../../scenery/js/imports.js';
import { Node } from '../../../../scenery/js/imports.js';
Expand Down
2 changes: 1 addition & 1 deletion js/building/view/ReturnButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @author Jonathan Olson <[email protected]>
*/

import Shape from '../../../../kite/js/Shape.js';
import { Shape } from '../../../../kite/js/imports.js';
import merge from '../../../../phet-core/js/merge.js';
import { Path } from '../../../../scenery/js/imports.js';
import RectangularPushButton from '../../../../sun/js/buttons/RectangularPushButton.js';
Expand Down
2 changes: 1 addition & 1 deletion js/building/view/ShapeGroupNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Property from '../../../../axon/js/Property.js';
import Bounds2 from '../../../../dot/js/Bounds2.js';
import Matrix3 from '../../../../dot/js/Matrix3.js';
import Vector2 from '../../../../dot/js/Vector2.js';
import Shape from '../../../../kite/js/Shape.js';
import { Shape } from '../../../../kite/js/imports.js';
import merge from '../../../../phet-core/js/merge.js';
import { HBox } from '../../../../scenery/js/imports.js';
import { Node } from '../../../../scenery/js/imports.js';
Expand Down
2 changes: 1 addition & 1 deletion js/building/view/ShapeLayerNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/

import Utils from '../../../../dot/js/Utils.js';
import Shape from '../../../../kite/js/Shape.js';
import { Shape } from '../../../../kite/js/imports.js';
import { Circle } from '../../../../scenery/js/imports.js';
import { Node } from '../../../../scenery/js/imports.js';
import { Path } from '../../../../scenery/js/imports.js';
Expand Down
2 changes: 1 addition & 1 deletion js/building/view/ShapePieceNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import Property from '../../../../axon/js/Property.js';
import Vector2 from '../../../../dot/js/Vector2.js';
import Shape from '../../../../kite/js/Shape.js';
import { Shape } from '../../../../kite/js/imports.js';
import merge from '../../../../phet-core/js/merge.js';
import { DragListener } from '../../../../scenery/js/imports.js';
import { Circle } from '../../../../scenery/js/imports.js';
Expand Down
2 changes: 1 addition & 1 deletion js/common/view/RoundArrowButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import BooleanProperty from '../../../../axon/js/BooleanProperty.js';
import Shape from '../../../../kite/js/Shape.js';
import { Shape } from '../../../../kite/js/imports.js';
import merge from '../../../../phet-core/js/merge.js';
import { Path } from '../../../../scenery/js/imports.js';
import RoundPushButton from '../../../../sun/js/buttons/RoundPushButton.js';
Expand Down
2 changes: 1 addition & 1 deletion js/game/model/ShapePartition.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import Matrix3 from '../../../../dot/js/Matrix3.js';
import Vector2 from '../../../../dot/js/Vector2.js';
import Shape from '../../../../kite/js/Shape.js';
import { Shape } from '../../../../kite/js/imports.js';
import fractionsCommon from '../../fractionsCommon.js';

class ShapePartition {
Expand Down
2 changes: 1 addition & 1 deletion js/intro/view/RoundNumberSpinner.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import Property from '../../../../axon/js/Property.js';
import Matrix3 from '../../../../dot/js/Matrix3.js';
import Shape from '../../../../kite/js/Shape.js';
import { Shape } from '../../../../kite/js/imports.js';
import merge from '../../../../phet-core/js/merge.js';
import { VBox } from '../../../../scenery/js/imports.js';
import FractionsCommonColors from '../../common/view/FractionsCommonColors.js';
Expand Down
2 changes: 1 addition & 1 deletion js/intro/view/beaker/BeakerNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @author Jonathan Olson <[email protected]>
*/

import Shape from '../../../../../kite/js/Shape.js';
import { Shape } from '../../../../../kite/js/imports.js';
import merge from '../../../../../phet-core/js/merge.js';
import { Node } from '../../../../../scenery/js/imports.js';
import { Path } from '../../../../../scenery/js/imports.js';
Expand Down
2 changes: 1 addition & 1 deletion js/intro/view/cake/CakeContainerNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @author Jonathan Olson <[email protected]>
*/

import Shape from '../../../../../kite/js/Shape.js';
import { Shape } from '../../../../../kite/js/imports.js';
import { Path } from '../../../../../scenery/js/imports.js';
import fractionsCommon from '../../../fractionsCommon.js';
import CellContainerNode from '../CellContainerNode.js';
Expand Down
8 changes: 2 additions & 6 deletions js/intro/view/cake/CakeNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,9 @@ import Bounds2 from '../../../../../dot/js/Bounds2.js';
import Dimension2 from '../../../../../dot/js/Dimension2.js';
import Ray2 from '../../../../../dot/js/Ray2.js';
import Vector2 from '../../../../../dot/js/Vector2.js';
import EllipticalArc from '../../../../../kite/js/segments/EllipticalArc.js';
import Line from '../../../../../kite/js/segments/Line.js';
import Shape from '../../../../../kite/js/Shape.js';
import { EllipticalArc, Line, Shape } from '../../../../../kite/js/imports.js';
import merge from '../../../../../phet-core/js/merge.js';
import { Image } from '../../../../../scenery/js/imports.js';
import { Node } from '../../../../../scenery/js/imports.js';
import { Path } from '../../../../../scenery/js/imports.js';
import { Image, Node, Path } from '../../../../../scenery/js/imports.js';
import cake_1_1_png from '../../../../mipmaps/cake_1_1_png.js';
import cake_2_1_png from '../../../../mipmaps/cake_2_1_png.js';
import cake_2_2_png from '../../../../mipmaps/cake_2_2_png.js';
Expand Down
2 changes: 1 addition & 1 deletion js/intro/view/circular/CircularContainerNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import Vector2 from '../../../../../dot/js/Vector2.js';
import Shape from '../../../../../kite/js/Shape.js';
import { Shape } from '../../../../../kite/js/imports.js';
import { Circle } from '../../../../../scenery/js/imports.js';
import { Path } from '../../../../../scenery/js/imports.js';
import FractionsCommonConstants from '../../../common/FractionsCommonConstants.js';
Expand Down
2 changes: 1 addition & 1 deletion js/intro/view/circular/CircularNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import Vector2 from '../../../../../dot/js/Vector2.js';
import Shape from '../../../../../kite/js/Shape.js';
import { Shape } from '../../../../../kite/js/imports.js';
import merge from '../../../../../phet-core/js/merge.js';
import { Node } from '../../../../../scenery/js/imports.js';
import { Path } from '../../../../../scenery/js/imports.js';
Expand Down
2 changes: 1 addition & 1 deletion js/intro/view/numberline/NumberLineNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import NumberProperty from '../../../../../axon/js/NumberProperty.js';
import Property from '../../../../../axon/js/Property.js';
import Bounds2 from '../../../../../dot/js/Bounds2.js';
import Utils from '../../../../../dot/js/Utils.js';
import Shape from '../../../../../kite/js/Shape.js';
import { Shape } from '../../../../../kite/js/imports.js';
import merge from '../../../../../phet-core/js/merge.js';
import ArrowNode from '../../../../../scenery-phet/js/ArrowNode.js';
import PhetFont from '../../../../../scenery-phet/js/PhetFont.js';
Expand Down
2 changes: 1 addition & 1 deletion js/intro/view/numberline/NumberLineSceneNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @author Jonathan Olson <[email protected]>
*/

import Shape from '../../../../../kite/js/Shape.js';
import { Shape } from '../../../../../kite/js/imports.js';
import PhetFont from '../../../../../scenery-phet/js/PhetFont.js';
import { Node } from '../../../../../scenery/js/imports.js';
import { Path } from '../../../../../scenery/js/imports.js';
Expand Down
2 changes: 1 addition & 1 deletion js/intro/view/rectangular/RectangularContainerNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import Bounds2 from '../../../../../dot/js/Bounds2.js';
import Shape from '../../../../../kite/js/Shape.js';
import { Shape } from '../../../../../kite/js/imports.js';
import merge from '../../../../../phet-core/js/merge.js';
import { Path } from '../../../../../scenery/js/imports.js';
import { Rectangle } from '../../../../../scenery/js/imports.js';
Expand Down
2 changes: 1 addition & 1 deletion js/matching/view/MatchChartNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @author Jonathan Olson <[email protected]>
*/

import Shape from '../../../../kite/js/Shape.js';
import { Shape } from '../../../../kite/js/imports.js';
import PhetFont from '../../../../scenery-phet/js/PhetFont.js';
import { Node } from '../../../../scenery/js/imports.js';
import { Path } from '../../../../scenery/js/imports.js';
Expand Down

0 comments on commit 73c8198

Please sign in to comment.