impaktapps-ui-builder 1.0.57-alpha.1 → 1.0.57-alpha.3
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 +5 -4
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +9 -9
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/runtime/services/service.d.ts +1 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTabSection.ts +1 -3
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +16 -1
- package/src/impaktapps-ui-builder/runtime/services/service.ts +5 -1
|
@@ -7760,7 +7760,8 @@ const buildPropertiesSection = function(type) {
|
|
|
7760
7760
|
uiSchema.elements = [
|
|
7761
7761
|
getInputField("placeholder", "Placeholder"),
|
|
7762
7762
|
getRadioInputField("multiline", "Multiline", ["YES", "NO"]),
|
|
7763
|
-
|
|
7763
|
+
getSelectField("defaultStyle", "Default Style"),
|
|
7764
|
+
emptyBox$1("TextEmpty1", { xs: 6, sm: 6, md: 0, lg: 3 }),
|
|
7764
7765
|
getArrayControl("InputFormatingAndMasking", "formatElement", "Format Element"),
|
|
7765
7766
|
getInputField("keyName", "Event Key Name")
|
|
7766
7767
|
];
|
|
@@ -7913,12 +7914,14 @@ const buildPropertiesSection = function(type) {
|
|
|
7913
7914
|
uiSchema.elements = [
|
|
7914
7915
|
getRadioInputField("lazyLoading", "Lazy Loading", ["YES", "NO"]),
|
|
7915
7916
|
getRadioInputField("freeSolo", "FreeSolo", ["YES", "NO"]),
|
|
7917
|
+
getSelectField("defaultStyle", "Default Style"),
|
|
7916
7918
|
emptyBox$1("SelectEmpty")
|
|
7917
7919
|
];
|
|
7918
7920
|
break;
|
|
7919
7921
|
case "MultipleSelect":
|
|
7920
7922
|
uiSchema.elements = [
|
|
7921
7923
|
getRadioInputField("lazyLoading", "Lazy Loading", ["YES", "NO"]),
|
|
7924
|
+
getSelectField("defaultStyle", "Default Style"),
|
|
7922
7925
|
emptyBox$1("MultipleSelectEmpty1", { xs: 0, sm: 6, md: 4, lg: 4 }),
|
|
7923
7926
|
emptyBox$1("MultipleSelectEmpty2")
|
|
7924
7927
|
];
|
|
@@ -10329,6 +10332,7 @@ var service = (funcParams) => {
|
|
|
10329
10332
|
eventGroups = {};
|
|
10330
10333
|
pageData = await funcParams.pageDataProvider();
|
|
10331
10334
|
const config2 = pageData == null ? void 0 : pageData.config;
|
|
10335
|
+
funcParams == null ? void 0 : funcParams.setExternaldata();
|
|
10332
10336
|
const uiSchema = pageData == null ? void 0 : pageData.uiSchema;
|
|
10333
10337
|
const event2 = new CustomEvent("pageNameChanged", {
|
|
10334
10338
|
detail: { pageName: config2.label, hasBackIcon: true }
|
|
@@ -11032,9 +11036,6 @@ var Tabsection = {
|
|
|
11032
11036
|
const buildTabSection = (config2, componentScope2) => {
|
|
11033
11037
|
const tab = _.cloneDeep(Tabsection);
|
|
11034
11038
|
tab.scope = componentScope2;
|
|
11035
|
-
if (config2.style) {
|
|
11036
|
-
tab.config.style = JSON.parse(config2.style);
|
|
11037
|
-
}
|
|
11038
11039
|
if (config2.lazyLoad) {
|
|
11039
11040
|
tab.config.main.lazyLoad = config2.lazyLoad === "YES" ? true : false;
|
|
11040
11041
|
}
|