impaktapps-ui-builder 1.0.79 → 1.0.80-schema.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.
- package/dist/impaktapps-ui-builder.es.js +13 -11
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +1 -2
- package/src/impaktapps-ui-builder/runtime/services/service.ts +14 -8
|
@@ -6275,8 +6275,7 @@ const ComponentSchema = {
|
|
|
6275
6275
|
oneOf: [
|
|
6276
6276
|
{ title: "Date Column", const: "date" },
|
|
6277
6277
|
{ title: "DateTime Column", const: "dateTime" },
|
|
6278
|
-
{ title: "Amount Column", const: "amount" }
|
|
6279
|
-
{ title: "Center Column", const: "action" }
|
|
6278
|
+
{ title: "Amount Column", const: "amount" }
|
|
6280
6279
|
]
|
|
6281
6280
|
},
|
|
6282
6281
|
variant: {
|
|
@@ -10305,15 +10304,18 @@ var service = (funcParams) => {
|
|
|
10305
10304
|
eventGroups,
|
|
10306
10305
|
formDataHolder: {}
|
|
10307
10306
|
});
|
|
10308
|
-
funcParams.store.setSchema(
|
|
10309
|
-
|
|
10310
|
-
|
|
10311
|
-
|
|
10312
|
-
|
|
10313
|
-
|
|
10314
|
-
|
|
10315
|
-
|
|
10316
|
-
|
|
10307
|
+
funcParams.store.setSchema((pre) => {
|
|
10308
|
+
const updatedSchema = {
|
|
10309
|
+
...schema2,
|
|
10310
|
+
...pre,
|
|
10311
|
+
properties: {
|
|
10312
|
+
...schema2.properties,
|
|
10313
|
+
...pre.properties
|
|
10314
|
+
}
|
|
10315
|
+
};
|
|
10316
|
+
funcParams.store.tempSchema = updatedSchema;
|
|
10317
|
+
return updatedSchema;
|
|
10318
|
+
});
|
|
10317
10319
|
uiSchema.elements.push(notifyUiSchema);
|
|
10318
10320
|
funcParams.store.setUiSchema(uiSchema);
|
|
10319
10321
|
},
|