Skip to content

Commit

Permalink
chore: export classes to fix Fusion jest (#4724)
Browse files Browse the repository at this point in the history
  • Loading branch information
haakonflatval-cognite authored Aug 26, 2024
1 parent 555a1e1 commit 78cb568
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion react-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cognite/reveal-react-components",
"version": "0.55.6",
"version": "0.55.7",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class PointCloudFilterCommand extends BaseFilterCommand {

// Note: This is not exported, as it is only used internally

class FilterItemCommand extends BaseFilterItemCommand {
export class FilterItemCommand extends BaseFilterItemCommand {
private readonly _modelId: number;
private readonly _revisionId: number;
private readonly _pointClass: PointClass;
Expand Down Expand Up @@ -174,7 +174,7 @@ class FilterItemCommand extends BaseFilterItemCommand {
}
}

class PointClass {
export class PointClass {
name: string;
code: number | WellKnownAsprsPointClassCodes;
color: Color;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export class DomainObjectChange {
// ==================================================
// LOCAL HELPER CLASS
// ==================================================
class ChangedDescription {
export class ChangedDescription {
public change: symbol;
public fieldName: string | undefined;

Expand Down

0 comments on commit 78cb568

Please sign in to comment.