impaktapps-ui-builder 1.0.147-test.14 → 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.
@@ -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
  }
@@ -11566,6 +11574,7 @@ function Card(theme) {
11566
11574
  componentsBoxStyle: {
11567
11575
  boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.1)",
11568
11576
  flexDirection: "column",
11577
+ overflow: "hidden",
11569
11578
  flexWrap: "nowrap",
11570
11579
  width: "100% !important",
11571
11580
  background: "transparent",
@@ -11661,6 +11670,7 @@ function Card(theme) {
11661
11670
  maxWidth: "200px",
11662
11671
  whiteSpace: "nowrap",
11663
11672
  overflowX: "auto",
11673
+ overflowY: "hidden",
11664
11674
  scrollbarWidth: "none",
11665
11675
  "&::-webkit-scrollbar": {
11666
11676
  display: "none"