Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Added new vocab and MembersBuilder component type
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-voror committed Aug 24, 2022
1 parent 161bd39 commit 813d65a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/enums/modules/ComponentType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ export enum ComponentType {
TEXT_INPUT = "TextInput",
ENTITY_SEARCH = "EntitySearch",
BUILDER_CHILD_WRAPPER = "BuilderChildWrapper",
ENTITY_AUTO_COMPLETE = "EntityAutoComplete"
ENTITY_AUTO_COMPLETE = "EntityAutoComplete",
MEMBERS_BUILDER = "MembersBuilder"
}
4 changes: 4 additions & 0 deletions src/vocabulary/IM.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export class IM {
public static TASK = IM.NAMESPACE + "Task";

public static STATS_REPORT_ENTRY = IM.NAMESPACE + "hasStatsReportEntry";
public static FAVOURITES = IM.NAMESPACE + "Favourites";

public static MODULE_ONTOLOGY = IM.NAMESPACE + "DiscoveryOntology";
public static MODULE_SETS = IM.NAMESPACE + "Sets";
Expand Down Expand Up @@ -108,6 +109,7 @@ export class IM {
public static STEPS_GROUP_COMPONENT = IM.NAMESPACE + "stepsGroup";
public static ARRAY_BUILDER_COMPONENT = IM.NAMESPACE + "arrayBuilder";
public static ENTITY_AUTO_COMPLETE_COMPONENT = IM.NAMESPACE + "entityAutoComplete";
public static MEMBERS_BUILDER = IM.NAMESPACE + "membersBuilder";

//argument options
public static VALUE_TEXT = IM.NAMESPACE + "valueText";
Expand All @@ -117,4 +119,6 @@ export class IM {
// IM1
public static IM_1_ID = IM.NAMESPACE + "im1Id";
public static IM_1_SCHEME = IM.NAMESPACE + "im1Scheme";

public static ENTITY_TYPES = IM.NAMESPACE + "EntityTypes";
}

0 comments on commit 813d65a

Please sign in to comment.