Skip to content

Commit 73bf024

Browse files
committed
fix(deps): update dependencies
1 parent bcdefa1 commit 73bf024

File tree

69 files changed

+183
-185
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+183
-185
lines changed

e2e/on-move-params.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { test, expect } from '@playwright/test';
22

3-
import type { OnMoveParams } from 'index';
3+
import type { OnMoveParams } from '@/index';
44

55
import { getIframeContent } from './consts';
66

package-lock.json

Lines changed: 88 additions & 88 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"react-demo-tab": "1.3.30",
8989
"react-dom": "19.1.0",
9090
"react-joystick-component": "6.2.1",
91-
"rollup": "4.43.0",
91+
"rollup": "4.44.1",
9292
"rollup-plugin-dts": "6.2.1",
9393
"semantic-release": "24.2.5",
9494
"storybook": "9.0.13",

scripts/tsconfig.base.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
"compilerOptions": {
33
"noEmit": true,
44
"outDir": "../compiled",
5-
"baseUrl": "../src",
65
"paths": {
7-
".": ["."]
6+
"@/*": ["../src/*"]
87
},
98
"importHelpers": true,
109
"jsx": "react-jsx",

src/features/glare/Glare.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { CSSProperties } from 'react';
22

3-
import { constrainToRange } from 'utils/helperFns';
4-
import type { ElementSizePosition, ClientPosition } from 'utils/types';
3+
import { constrainToRange } from '@/utils/helperFns';
4+
import type { ElementSizePosition, ClientPosition } from '@/utils/types';
55

66
import type { GlareProps } from './types.public';
77

src/features/glare/test/glare.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { screen, render } from '@testing-library/react';
22
import userEvent from '@testing-library/user-event';
33

4-
import type { OnMove, OnMoveParams } from 'index';
5-
import { TiltTest } from 'utils/TiltTest';
4+
import type { OnMove, OnMoveParams } from '@/index';
5+
import { TiltTest } from '@/utils/TiltTest';
66

77
describe('Glare', () => {
88
it('should calculate glare with top position when top position prop value is provided', async () => {

src/features/glare/test/glareStyle.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { screen, render, fireEvent } from '@testing-library/react';
22

3-
import type { OnMove } from 'index';
4-
import { TiltTest } from 'utils/TiltTest';
3+
import type { OnMove } from '@/index';
4+
import { TiltTest } from '@/utils/TiltTest';
55

66
describe('Glare - Style', () => {
77
it('should update glare style when hover on element', () => {

src/features/tilt/Tilt.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { constrainToRange } from 'utils/helperFns';
2-
import type { ClientPosition } from 'utils/types';
1+
import { constrainToRange } from '@/utils/helperFns';
2+
import type { ClientPosition } from '@/utils/types';
33

44
import type { TiltProps } from './types.public';
55

src/features/tilt/test/tiltAxis.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { screen, render } from '@testing-library/react';
22
import userEvent from '@testing-library/user-event';
33

4-
import type { OnMove, OnMoveParams } from 'index';
5-
import { TiltTest } from 'utils/TiltTest';
4+
import type { OnMove, OnMoveParams } from '@/index';
5+
import { TiltTest } from '@/utils/TiltTest';
66

77
describe('Tilt - Axis', () => {
88
it('should disable y axis when only x tilt axis prop is enabled', async () => {

src/features/tilt/test/tiltDisable.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { screen, render, fireEvent } from '@testing-library/react';
22

3-
import type { OnMove, OnMoveParams } from 'index';
4-
import { TiltTest } from 'utils/TiltTest';
3+
import type { OnMove, OnMoveParams } from '@/index';
4+
import { TiltTest } from '@/utils/TiltTest';
55

66
describe('Tilt - Disable', () => {
77
it('should not calculate tilt when disabled', () => {

0 commit comments

Comments
 (0)