impaktapps-ui-builder 1.0.147-test.15 → 1.0.147-test.16
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 +9 -0
- 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/dist/src/impaktapps-ui-builder/builder/build/uischema/card.d.ts +4 -0
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +6 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/card.ts +1 -1
|
@@ -8043,6 +8043,8 @@ const buildPropertiesSection = function(type) {
|
|
|
8043
8043
|
getRadioInputField("disableFullScreenToggle", "Disable Full Screen", ["YES", "NO"]),
|
|
8044
8044
|
getRadioInputField("disableDensityToggle", "Disable Density Toggle", ["YES", "NO"]),
|
|
8045
8045
|
getRadioInputField("disableDownloadFile", "Disable Download File", ["YES", "NO"]),
|
|
8046
|
+
getRadioInputField("disableTopToolbar", "Disable Top Toolbar", ["YES", "NO"]),
|
|
8047
|
+
getRadioInputField("disableBottomToolbar", "Disable Bottom Toolbar", ["YES", "NO"]),
|
|
8046
8048
|
getRadioInputField("disablePagination", "Disable Pagination", ["YES", "NO"]),
|
|
8047
8049
|
getInputField("selectKey", "Selection Key"),
|
|
8048
8050
|
getMultiSelectField("filteringOptions", "Filtering Options"),
|
|
@@ -11431,6 +11433,12 @@ const buildTable = (config, componentScope) => {
|
|
|
11431
11433
|
if (config.disableDownloadFile) {
|
|
11432
11434
|
table.config.main.disableDownloadFile = config.disableDownloadFile === "YES" ? true : false;
|
|
11433
11435
|
}
|
|
11436
|
+
if (config.disableTopToolbar) {
|
|
11437
|
+
table.config.main.disableTopToolbar = config.disableTopToolbar === "YES" ? true : false;
|
|
11438
|
+
}
|
|
11439
|
+
if (config.disableBottomToolbar) {
|
|
11440
|
+
table.config.main.disableBottomToolbar = config.disableBottomToolbar === "YES" ? true : false;
|
|
11441
|
+
}
|
|
11434
11442
|
if (config.disablePagination) {
|
|
11435
11443
|
table.config.main.disablePagination = config.disablePagination === "YES" ? true : false;
|
|
11436
11444
|
}
|
|
@@ -11662,6 +11670,7 @@ function Card(theme) {
|
|
|
11662
11670
|
maxWidth: "200px",
|
|
11663
11671
|
whiteSpace: "nowrap",
|
|
11664
11672
|
overflowX: "auto",
|
|
11673
|
+
overflowY: "hidden",
|
|
11665
11674
|
scrollbarWidth: "none",
|
|
11666
11675
|
"&::-webkit-scrollbar": {
|
|
11667
11676
|
display: "none"
|