Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions packages/common/src/aggregators/index.ts

This file was deleted.

2 changes: 1 addition & 1 deletion packages/common/src/core/__tests__/slickDataView.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { afterAll, afterEach, beforeAll, beforeEach, describe, expect, it, test, vi } from 'vitest';
import { Aggregators } from '../../aggregators/index.js';
import { Aggregators } from '../../aggregators/aggregators.index.js';
import { SortDirectionNumber } from '../../enums/sortDirectionNumber.enum.js';
import { SlickHybridSelectionModel } from '../../extensions/slickHybridSelectionModel.js';
import type { GridOption, Grouping } from '../../interfaces/index.js';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { afterEach, beforeEach, describe, expect, it, vi, type Mock } from 'vite
import { TranslateServiceStub } from '../../../../../test/translateServiceStub.js';
import { SlickEvent, SlickEventData, type SlickDataView, type SlickGrid } from '../../core/index.js';
import { ExtensionUtility } from '../../extensions/extensionUtility.js';
import { Formatters } from '../../formatters/index.js';
import { Formatters } from '../../formatters/formatters.index.js';
import type { Column, ContextMenu, ElementPosition, ExternalResource, Formatter, GridOption, MenuCommandItem, MenuOptionItem } from '../../interfaces/index.js';
import {
BackendUtilityService,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateEuro Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateEuroShort Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the Date ISO Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeEuroAM_PM Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeShortEuro Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeEuro Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeEuroShortAM_PM Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeEuroShortAmPm Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeEuroShort Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeIsoAM_PM Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeIsoAmPm Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeIso Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeShortEuro Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeShortIso Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeShortUs Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeUsAM_PM Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeShortUs Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeUs Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeUsShortAM_PM Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeUsShortAmPm Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateTimeUsShort Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateUs Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateUsShort Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest';
import type { Column } from '../../interfaces/index.js';
import { Formatters } from '../index.js';
import { Formatters } from '../formatters.index.js';

describe('the DateUtc Formatter', () => {
it('should return null when no value is provided', () => {
Expand Down
28 changes: 0 additions & 28 deletions packages/common/src/formatters/index.ts

This file was deleted.

13 changes: 0 additions & 13 deletions packages/common/src/grouping-formatters/index.ts

This file was deleted.

4 changes: 1 addition & 3 deletions packages/common/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export * from './global-grid-options.js';
export * from './core/index.js';
export * from './enums/index.js';
export type * from './interfaces/index.js';
export * from './aggregators/index.js';
export * from './aggregators/aggregators.index.js';
export * from './editors/index.js';
export * from './editors/editors.index.js';
Expand All @@ -31,9 +30,8 @@ export * from './filter-conditions/filterConditions.index.js';
export * from './filters/index.js';
export * from './filters/filters.index.js';
export * from './filters/filterFactory.js';
export * from './formatters/index.js';
export * from './formatters/formatters.index.js';
export * from './grouping-formatters/index.js';
export * from './formatters/formatterUtilities.js';
export * from './grouping-formatters/groupingFormatters.index.js';
export * from './sortComparers/index.js';
export * from './sortComparers/sortComparers.index.js';
Expand Down
Loading