Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(react-components): export classes to fix Fusion jest and bump react-components to 0.55.7 #4724

Merged
merged 2 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
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
Loading