@plusscommunities/pluss-feature-builder-web-b 1.0.2-beta.8 → 1.0.4-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,49 @@
1
+ /*
2
+ "values" defines configurable options for this extension.
3
+ It can be swapped prior to publishing via copy:set
4
+ */
5
+ export const values = {
6
+ featureKey: "feature-builder",
7
+ featureKeyRoute: "/feature-builder", // Dynamic route prefix
8
+ featureId: "feature-builder-default", // Fixed ID for the single feature definition
9
+ reducerKey: "featureBuilder", // Define reducer 'slice' key.
10
+ singularName: "Build Your Feature",
11
+ description: "Create custom forms for mobile application.",
12
+ emptyText: "No custom forms available",
13
+ textMenuTitle: "Build Your Feature",
14
+ textPermissionFeatureBuilderDefinition: "Build Your Feature Definition",
15
+ textPermissionFeatureBuilderContent:
16
+ "Create and Manage Content in Build Your Feature",
17
+
18
+ // Routes
19
+ routeFormOverviewStep: "/feature-builder/definition/overview",
20
+ routeFormFieldsStep: "/feature-builder/definition/fields",
21
+ routeFormLayoutStep: "/feature-builder/definition/layout",
22
+ routeListingScreen: "/feature-builder/listing",
23
+ routeCreateListing: "/feature-builder/listing/create",
24
+
25
+ routeEditListing: "/feature-builder/listing/edit/:id",
26
+
27
+ // Screen names
28
+ screenFormOverviewStep: "FormOverviewStep",
29
+ screenFormFieldsStep: "FormFieldsStep",
30
+ screenFormLayoutStep: "FormLayoutStep",
31
+ screenListingScreen: "ListingScreen",
32
+
33
+ // Page names
34
+ pageCreateListing: "CreateListingPage",
35
+ pageEditListing: "EditListingPage",
36
+
37
+ // Permissions
38
+ permissionFeatureBuilderDefinition: "featureBuilderDefinition",
39
+ permissionFeatureBuilderContent: "featureBuilderContent",
40
+
41
+ // Menu
42
+ menuIcon: "tool",
43
+ menuKey: "feature-builder-definition",
44
+ menuIsFontAwesome: true,
45
+ menuOrder: 20, // Lower number = higher priority
46
+
47
+ // Default Values
48
+ defaultIcon: "star",
49
+ };