Skip to content

Commit e3e30c9

Browse files
committed
2 parents 018b75a + 3b6b028 commit e3e30c9

30 files changed

Lines changed: 27 additions & 78 deletions

packages/common/src/aggregators/index.ts

Lines changed: 0 additions & 8 deletions
This file was deleted.

packages/common/src/core/__tests__/slickDataView.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { afterAll, afterEach, beforeAll, beforeEach, describe, expect, it, test, vi } from 'vitest';
2-
import { Aggregators } from '../../aggregators/index.js';
2+
import { Aggregators } from '../../aggregators/aggregators.index.js';
33
import { SortDirectionNumber } from '../../enums/sortDirectionNumber.enum.js';
44
import { SlickHybridSelectionModel } from '../../extensions/slickHybridSelectionModel.js';
55
import type { GridOption, Grouping } from '../../interfaces/index.js';

packages/common/src/extensions/__tests__/slickContextMenu.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { afterEach, beforeEach, describe, expect, it, vi, type Mock } from 'vite
44
import { TranslateServiceStub } from '../../../../../test/translateServiceStub.js';
55
import { SlickEvent, SlickEventData, type SlickDataView, type SlickGrid } from '../../core/index.js';
66
import { ExtensionUtility } from '../../extensions/extensionUtility.js';
7-
import { Formatters } from '../../formatters/index.js';
7+
import { Formatters } from '../../formatters/formatters.index.js';
88
import type { Column, ContextMenu, ElementPosition, ExternalResource, Formatter, GridOption, MenuCommandItem, MenuOptionItem } from '../../interfaces/index.js';
99
import {
1010
BackendUtilityService,

packages/common/src/formatters/__tests__/dateEuroFormatter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, expect, it } from 'vitest';
22
import type { Column } from '../../interfaces/index.js';
3-
import { Formatters } from '../index.js';
3+
import { Formatters } from '../formatters.index.js';
44

55
describe('the DateEuro Formatter', () => {
66
it('should return null when no value is provided', () => {

packages/common/src/formatters/__tests__/dateEuroShortFormatter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, expect, it } from 'vitest';
22
import type { Column } from '../../interfaces/index.js';
3-
import { Formatters } from '../index.js';
3+
import { Formatters } from '../formatters.index.js';
44

55
describe('the DateEuroShort Formatter', () => {
66
it('should return null when no value is provided', () => {

packages/common/src/formatters/__tests__/dateIsoFormatter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, expect, it } from 'vitest';
22
import type { Column } from '../../interfaces/index.js';
3-
import { Formatters } from '../index.js';
3+
import { Formatters } from '../formatters.index.js';
44

55
describe('the Date ISO Formatter', () => {
66
it('should return null when no value is provided', () => {

packages/common/src/formatters/__tests__/dateTimeEuroAM_PMFormatter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, expect, it } from 'vitest';
22
import type { Column } from '../../interfaces/index.js';
3-
import { Formatters } from '../index.js';
3+
import { Formatters } from '../formatters.index.js';
44

55
describe('the DateTimeEuroAM_PM Formatter', () => {
66
it('should return null when no value is provided', () => {

packages/common/src/formatters/__tests__/dateTimeEuroAmPmFormatter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, expect, it } from 'vitest';
22
import type { Column } from '../../interfaces/index.js';
3-
import { Formatters } from '../index.js';
3+
import { Formatters } from '../formatters.index.js';
44

55
describe('the DateTimeShortEuro Formatter', () => {
66
it('should return null when no value is provided', () => {

packages/common/src/formatters/__tests__/dateTimeEuroFormatter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, expect, it } from 'vitest';
22
import type { Column } from '../../interfaces/index.js';
3-
import { Formatters } from '../index.js';
3+
import { Formatters } from '../formatters.index.js';
44

55
describe('the DateTimeEuro Formatter', () => {
66
it('should return null when no value is provided', () => {

packages/common/src/formatters/__tests__/dateTimeEuroShortAM_PMFormatter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, expect, it } from 'vitest';
22
import type { Column } from '../../interfaces/index.js';
3-
import { Formatters } from '../index.js';
3+
import { Formatters } from '../formatters.index.js';
44

55
describe('the DateTimeEuroShortAM_PM Formatter', () => {
66
it('should return null when no value is provided', () => {

0 commit comments

Comments
 (0)