impaktapps-ui-builder 1.0.95 → 1.0.97
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 +20 -8
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +4 -4
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +9 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildFileInput.ts +36 -37
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +16 -7
- package/src/impaktapps-ui-builder/builder/elements/UiSchema/Component/schema.ts +6 -2
|
@@ -6273,7 +6273,8 @@ const ComponentSchema = {
|
|
|
6273
6273
|
oneOf: [
|
|
6274
6274
|
{ title: "Date Column", const: "date" },
|
|
6275
6275
|
{ title: "DateTime Column", const: "dateTime" },
|
|
6276
|
-
{ title: "Amount Column", const: "amount" }
|
|
6276
|
+
{ title: "Amount Column", const: "amount" },
|
|
6277
|
+
{ title: "Center Column", const: "action" }
|
|
6277
6278
|
]
|
|
6278
6279
|
},
|
|
6279
6280
|
variant: {
|
|
@@ -6556,7 +6557,10 @@ const ComponentSchema = {
|
|
|
6556
6557
|
{ "title": "Bin Icon", "const": "Bin" },
|
|
6557
6558
|
{ "title": "Export Icon", "const": "Export" },
|
|
6558
6559
|
{ "title": "Table Paste Icon", "const": "TablePaste" },
|
|
6559
|
-
{ "title": "Clone Icon", "const": "CloneIcon" }
|
|
6560
|
+
{ "title": "Clone Icon", "const": "CloneIcon" },
|
|
6561
|
+
{ "title": "Detail Icon", "const": "DetailIcon" },
|
|
6562
|
+
{ "title": "Report View Icon", "const": "ReportViewIcon" },
|
|
6563
|
+
{ "title": "Payout", "const": "Payout" }
|
|
6560
6564
|
]
|
|
6561
6565
|
},
|
|
6562
6566
|
color: {
|
|
@@ -11289,7 +11293,7 @@ function Card(theme) {
|
|
|
11289
11293
|
{
|
|
11290
11294
|
type: "HorizontalLayout",
|
|
11291
11295
|
config: {
|
|
11292
|
-
layout:
|
|
11296
|
+
layout: 9
|
|
11293
11297
|
},
|
|
11294
11298
|
elements: [
|
|
11295
11299
|
{
|
|
@@ -11309,7 +11313,8 @@ function Card(theme) {
|
|
|
11309
11313
|
width: "100%",
|
|
11310
11314
|
height: "inherit",
|
|
11311
11315
|
background: "transparent",
|
|
11312
|
-
borderRadius: "0px"
|
|
11316
|
+
borderRadius: "0px",
|
|
11317
|
+
paddingRight: 0
|
|
11313
11318
|
},
|
|
11314
11319
|
layout: 12
|
|
11315
11320
|
},
|
|
@@ -11401,11 +11406,18 @@ function Card(theme) {
|
|
|
11401
11406
|
color: "black",
|
|
11402
11407
|
fontSize: "16px",
|
|
11403
11408
|
justifyContent: "center",
|
|
11404
|
-
|
|
11409
|
+
whiteSpace: "nowrap",
|
|
11410
|
+
overflowX: "auto",
|
|
11411
|
+
overflowY: "hidden",
|
|
11412
|
+
scrollbarWidth: "none",
|
|
11413
|
+
msOverflowStyle: "none",
|
|
11405
11414
|
background: "inherit",
|
|
11406
|
-
width: "calc(100
|
|
11415
|
+
width: "calc(100% + 8px)",
|
|
11407
11416
|
margin: "-8px",
|
|
11408
|
-
marginTop: { xs: "16px", md: "20px" }
|
|
11417
|
+
marginTop: { xs: "16px", md: "20px" },
|
|
11418
|
+
"&::-webkit-scrollbar": {
|
|
11419
|
+
display: "none"
|
|
11420
|
+
}
|
|
11409
11421
|
},
|
|
11410
11422
|
layout: 12
|
|
11411
11423
|
},
|
|
@@ -11438,7 +11450,7 @@ function Card(theme) {
|
|
|
11438
11450
|
height: "64px"
|
|
11439
11451
|
}
|
|
11440
11452
|
},
|
|
11441
|
-
layout:
|
|
11453
|
+
layout: 3
|
|
11442
11454
|
},
|
|
11443
11455
|
options: {
|
|
11444
11456
|
widget: "Image"
|