Skip to content

Commit 1c0f9c1

Browse files
committed
ecis -> ecij
1 parent 004e714 commit 1c0f9c1

39 files changed

+41
-41
lines changed

.prettierrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"^react-dom",
1010
"^react",
1111
"<THIRD_PARTY_MODULES>",
12-
"^@nstep/ecis$",
12+
"^ecij$",
1313
"^clsx$",
1414
"",
1515
"./src",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
"@eslint/markdown": "^7.3.0",
5757
"@faker-js/faker": "^10.0.0",
5858
"@ianvs/prettier-plugin-sort-imports": "^4.6.2",
59-
"@nstep/ecis": "^0.1.0",
6059
"@tanstack/react-router": "^1.132.31",
6160
"@tanstack/router-plugin": "^1.132.31",
6261
"@types/node": "^24.8.0",
@@ -69,6 +68,7 @@
6968
"@vitest/coverage-istanbul": "^4.0.1",
7069
"@vitest/eslint-plugin": "^1.3.4",
7170
"clsx": "^2.1.1",
71+
"ecij": "^0.1.1",
7272
"eslint": "^9.36.0",
7373
"eslint-plugin-jest-dom": "^5.5.0",
7474
"eslint-plugin-react": "^7.37.5",

rolldown.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { isAbsolute } from 'node:path';
2-
import { ecis } from '@nstep/ecis/plugin';
2+
import { ecij } from 'ecij/plugin';
33
import { defineConfig } from 'rolldown';
44
import { dts } from 'rolldown-plugin-dts';
55

@@ -16,7 +16,7 @@ export default defineConfig({
1616
platform: 'browser',
1717
external: (id) => !id.startsWith('.') && !isAbsolute(id),
1818
plugins: [
19-
ecis({
19+
ecij({
2020
// We add the package version as prefix to avoid style conflicts
2121
// between multiple versions of RDG on the same page
2222
classPrefix: `rdg-${pkg.version.replaceAll('.', '-')}-`

src/Cell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { memo, type MouseEvent } from 'react';
2-
import { css } from '@nstep/ecis';
2+
import { css } from 'ecij';
33

44
import { useRovingTabIndex } from './hooks';
55
import { createCellEvent, getCellClassname, getCellStyle, isCellEditableUtil } from './utils';

src/EditCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useEffectEvent, useLayoutEffect, useRef } from 'react';
2-
import { css } from '@nstep/ecis';
2+
import { css } from 'ecij';
33

44
import { createCellEvent, getCellClassname, getCellStyle, onEditorNavigation } from './utils';
55
import type {

src/GroupRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { memo, useMemo } from 'react';
2-
import { css } from '@nstep/ecis';
2+
import { css } from 'ecij';
33

44
import { RowSelectionContext, type RowSelectionContextValue } from './hooks';
55
import { classnames, getRowStyle } from './utils';

src/HeaderCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useRef, useState } from 'react';
22
import { flushSync } from 'react-dom';
3-
import { css } from '@nstep/ecis';
3+
import { css } from 'ecij';
44

55
import { useRovingTabIndex } from './hooks';
66
import {

src/HeaderRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { memo, useState } from 'react';
2-
import { css } from '@nstep/ecis';
2+
import { css } from 'ecij';
33

44
import { classnames, getColSpan } from './utils';
55
import type { CalculatedColumn, Direction, Maybe, Position, ResizedWidth } from './types';

src/SummaryCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { memo } from 'react';
2-
import { css } from '@nstep/ecis';
2+
import { css } from 'ecij';
33

44
import { useRovingTabIndex } from './hooks';
55
import { getCellClassname, getCellStyle } from './utils';

src/SummaryRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { memo } from 'react';
2-
import { css } from '@nstep/ecis';
2+
import { css } from 'ecij';
33

44
import { classnames, getColSpan, getRowStyle } from './utils';
55
import type { RenderRowProps } from './types';

0 commit comments

Comments
 (0)