impaktapps-ui-builder 0.0.278 → 0.0.279
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.
- package/dist/impaktapps-ui-builder.es.js +110 -106
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +6 -6
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/apiSection.d.ts +4 -4
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.d.ts +4 -4
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/coreSection.d.ts +4 -4
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/validationSections.d.ts +2 -2
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildMultiSelect.ts +7 -1
- package/src/impaktapps-ui-builder/builder/build/buildSelect.ts +1 -1
- package/src/impaktapps-ui-builder/builder/build/uischema/apiSection.ts +6 -6
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +85 -83
- package/src/impaktapps-ui-builder/builder/build/uischema/coreSection.ts +35 -35
- package/src/impaktapps-ui-builder/builder/build/uischema/validationSections.ts +4 -29
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/uiSchema.ts +35 -35
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/PageMaster/uiSchema.ts +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/event/uiSchema.ts +10 -10
- package/src/impaktapps-ui-builder/builder/services/event.ts +2 -2
|
@@ -102,33 +102,33 @@ export const componentBasicUiSchema: any = {
|
|
|
102
102
|
main: {
|
|
103
103
|
label: "Type",
|
|
104
104
|
options: [
|
|
105
|
-
{
|
|
106
|
-
{
|
|
107
|
-
{
|
|
108
|
-
{
|
|
109
|
-
{
|
|
110
|
-
{
|
|
111
|
-
{
|
|
112
|
-
{
|
|
113
|
-
{
|
|
114
|
-
{
|
|
115
|
-
{
|
|
116
|
-
{
|
|
117
|
-
{
|
|
118
|
-
{
|
|
119
|
-
{
|
|
120
|
-
{
|
|
121
|
-
{
|
|
122
|
-
{
|
|
123
|
-
{
|
|
124
|
-
{
|
|
125
|
-
{
|
|
126
|
-
{
|
|
127
|
-
{
|
|
128
|
-
{
|
|
129
|
-
{
|
|
130
|
-
{
|
|
131
|
-
{
|
|
105
|
+
{ title: "Select", const: "Select" },
|
|
106
|
+
{ title: "Date", const: "Date" },
|
|
107
|
+
{ title: "CheckBox", const: "CheckBox" },
|
|
108
|
+
{ title: "Table", const: "Table" },
|
|
109
|
+
{ title: "Array", const: "Array" },
|
|
110
|
+
{ title: "Container", const: "WrapperSection" },
|
|
111
|
+
{ title: "Tabs", const: "TabSection" },
|
|
112
|
+
{ title: "Text", const: "Text" },
|
|
113
|
+
{ title: "Radio", const: "Radio" },
|
|
114
|
+
{ title: "Text Area", const: "TextArea" },
|
|
115
|
+
{ title: "Button", const: "Button" },
|
|
116
|
+
{ title: "Card", const: "card" },
|
|
117
|
+
{ title: "Rank", const: "Rank" },
|
|
118
|
+
{ title: "SpeedoMeter", const: "SpeedoMeter" },
|
|
119
|
+
{ title: "ProgressBar", const: "ProgressBar" },
|
|
120
|
+
{ title: "Graph", const: "Graph" },
|
|
121
|
+
{ title: "Label", const: "Box" },
|
|
122
|
+
{ title: "Upload File", const: "UploadFile" },
|
|
123
|
+
{ title: "Download File", const: "DownloadFile" },
|
|
124
|
+
{ title: "Empty Box", const: "EmptyBox" },
|
|
125
|
+
{ title: "ProgressBar Card", const: "ProgressBarCard" },
|
|
126
|
+
{ title: "Rank Card", const: "RankCard" },
|
|
127
|
+
{ title: "Runner Boy Progress Bar", const: "RunnerBoyProgressBar" },
|
|
128
|
+
{ title: "Slider", const: "Slider" },
|
|
129
|
+
{ title: "Timer", const: "Timer" },
|
|
130
|
+
{ title: "MultipleSelect", const: "MultipleSelect" },
|
|
131
|
+
{ title: "LeaderBoard", const: "LeaderBoard" }
|
|
132
132
|
],
|
|
133
133
|
},
|
|
134
134
|
},
|
|
@@ -212,10 +212,10 @@ export const componentBasicUiSchema: any = {
|
|
|
212
212
|
main: {
|
|
213
213
|
label: "Screen Size",
|
|
214
214
|
options: [
|
|
215
|
-
{
|
|
216
|
-
{
|
|
217
|
-
{
|
|
218
|
-
{
|
|
215
|
+
{ title: "Extra Small", const: "xs" },
|
|
216
|
+
{ title: "Small", const: "sm" },
|
|
217
|
+
{ title: "Medium", const: "md" },
|
|
218
|
+
{ title: "Large", const: "lg" },
|
|
219
219
|
],
|
|
220
220
|
},
|
|
221
221
|
},
|
|
@@ -237,10 +237,10 @@ export const componentBasicUiSchema: any = {
|
|
|
237
237
|
main: {
|
|
238
238
|
label: "Value",
|
|
239
239
|
options: [
|
|
240
|
-
{
|
|
241
|
-
{
|
|
242
|
-
{
|
|
243
|
-
{
|
|
240
|
+
{ title: "3", const: "3" },
|
|
241
|
+
{ title: "5.5", const: "5.5" },
|
|
242
|
+
{ title: "8", const: "8" },
|
|
243
|
+
{ title: "12", const: "12" },
|
|
244
244
|
],
|
|
245
245
|
},
|
|
246
246
|
},
|
|
@@ -103,22 +103,22 @@ export const EventUiSchema: any = {
|
|
|
103
103
|
label: "Event Type",
|
|
104
104
|
type: "text",
|
|
105
105
|
options: [
|
|
106
|
-
{
|
|
107
|
-
{
|
|
108
|
-
{
|
|
109
|
-
{
|
|
110
|
-
{
|
|
111
|
-
{
|
|
106
|
+
{ title: "Click Event", const: "onClick" },
|
|
107
|
+
{ title: "onStart", const: "onStart" },
|
|
108
|
+
{ title: "Load Event", const: "onLoad" },
|
|
109
|
+
{ title: "Change Event", const: "onChange" },
|
|
110
|
+
{ title: "Success", const: "Success" },
|
|
111
|
+
{ title: "Fail", const: "Fail" }
|
|
112
112
|
]
|
|
113
113
|
|
|
114
114
|
},
|
|
115
115
|
},
|
|
116
116
|
},
|
|
117
117
|
getSelectField("Handler", "Handler", [
|
|
118
|
-
{
|
|
119
|
-
{
|
|
120
|
-
{
|
|
121
|
-
{
|
|
118
|
+
{ title: "Custom", const: "custom" },
|
|
119
|
+
{ title: "Api", const: "api" },
|
|
120
|
+
{ title: "Inbuilt Function", const: "inBuiltFunction" },
|
|
121
|
+
{ title: "Refresh", const: "refresh" },
|
|
122
122
|
]),
|
|
123
123
|
],
|
|
124
124
|
},
|
|
@@ -29,8 +29,8 @@ export default (
|
|
|
29
29
|
|
|
30
30
|
} else if (handlerType === "inBuiltFunction") {
|
|
31
31
|
uiSchema.elements[1].elements[0].elements[2] = getSelectField("inBuiltFunctionType", "Function Name", [
|
|
32
|
-
{
|
|
33
|
-
{
|
|
32
|
+
{ title: "RankProvider", const: "RankProvider" },
|
|
33
|
+
{ title: "Download File", const: "downloadFile" },
|
|
34
34
|
])
|
|
35
35
|
uiSchema.elements[1].elements[0].elements[3] = getTextArea("funcParametersCode", "Write Custom Code for Functions Parameter", true, { xs: 12, sm: 12, md: 6 })
|
|
36
36
|
} else if (handlerType === "refresh") {
|