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.
- package/dist/impaktapps-ui-builder.es.js +10 -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 +5 -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 +2 -1
|
@@ -13,6 +13,7 @@ export default function Card(theme: any): {
|
|
|
13
13
|
componentsBoxStyle: {
|
|
14
14
|
boxShadow: string;
|
|
15
15
|
flexDirection: string;
|
|
16
|
+
overflow: string;
|
|
16
17
|
flexWrap: string;
|
|
17
18
|
width: string;
|
|
18
19
|
background: string;
|
|
@@ -73,6 +74,7 @@ export default function Card(theme: any): {
|
|
|
73
74
|
display?: undefined;
|
|
74
75
|
width?: undefined;
|
|
75
76
|
lineHeight?: undefined;
|
|
77
|
+
overflowY?: undefined;
|
|
76
78
|
paddingLeft?: undefined;
|
|
77
79
|
};
|
|
78
80
|
};
|
|
@@ -108,6 +110,7 @@ export default function Card(theme: any): {
|
|
|
108
110
|
display?: undefined;
|
|
109
111
|
width?: undefined;
|
|
110
112
|
lineHeight?: undefined;
|
|
113
|
+
overflowY?: undefined;
|
|
111
114
|
paddingLeft?: undefined;
|
|
112
115
|
};
|
|
113
116
|
};
|
|
@@ -139,6 +142,7 @@ export default function Card(theme: any): {
|
|
|
139
142
|
maxWidth: string;
|
|
140
143
|
whiteSpace: string;
|
|
141
144
|
overflowX: string;
|
|
145
|
+
overflowY: string;
|
|
142
146
|
scrollbarWidth: string;
|
|
143
147
|
"&::-webkit-scrollbar": {
|
|
144
148
|
display: string;
|
|
@@ -182,6 +186,7 @@ export default function Card(theme: any): {
|
|
|
182
186
|
display?: undefined;
|
|
183
187
|
width?: undefined;
|
|
184
188
|
lineHeight?: undefined;
|
|
189
|
+
overflowY?: undefined;
|
|
185
190
|
};
|
|
186
191
|
};
|
|
187
192
|
options: {
|
package/package.json
CHANGED
|
@@ -65,6 +65,12 @@ export const buildTable = (config: any, componentScope: string) => {
|
|
|
65
65
|
if (config.disableDownloadFile) {
|
|
66
66
|
table.config.main.disableDownloadFile = config.disableDownloadFile === "YES" ? true : false
|
|
67
67
|
}
|
|
68
|
+
if (config.disableTopToolbar) {
|
|
69
|
+
table.config.main.disableTopToolbar = config.disableTopToolbar === "YES" ? true : false
|
|
70
|
+
}
|
|
71
|
+
if (config.disableBottomToolbar) {
|
|
72
|
+
table.config.main.disableBottomToolbar = config.disableBottomToolbar === "YES" ? true : false
|
|
73
|
+
}
|
|
68
74
|
if (config.disablePagination) {
|
|
69
75
|
table.config.main.disablePagination = config.disablePagination === "YES" ? true : false
|
|
70
76
|
}
|
|
@@ -480,6 +480,8 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
480
480
|
getRadioInputField("disableFullScreenToggle", "Disable Full Screen", ["YES", "NO"]),
|
|
481
481
|
getRadioInputField("disableDensityToggle", "Disable Density Toggle", ["YES", "NO"]),
|
|
482
482
|
getRadioInputField("disableDownloadFile", "Disable Download File", ["YES", "NO"]),
|
|
483
|
+
getRadioInputField("disableTopToolbar", "Disable Top Toolbar", ["YES", "NO"]),
|
|
484
|
+
getRadioInputField("disableBottomToolbar", "Disable Bottom Toolbar", ["YES", "NO"]),
|
|
483
485
|
getRadioInputField("disablePagination", "Disable Pagination", ["YES", "NO"]),
|
|
484
486
|
getInputField("selectKey", "Selection Key"),//defaultColumnSize
|
|
485
487
|
getMultiSelectField("filteringOptions", "Filtering Options"),
|
|
@@ -497,6 +499,7 @@ export const buildPropertiesSection = function (type: String) {
|
|
|
497
499
|
{ label: "Comfortable", value: "comfortable" },
|
|
498
500
|
{ label: "Spacious", value: "spacious" }
|
|
499
501
|
]),
|
|
502
|
+
|
|
500
503
|
buildWrapper("Tree Table Properties", [
|
|
501
504
|
getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
|
|
502
505
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
@@ -15,6 +15,7 @@ export default function Card(theme){
|
|
|
15
15
|
componentsBoxStyle: {
|
|
16
16
|
boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.1)",
|
|
17
17
|
flexDirection: "column",
|
|
18
|
+
overflow: "hidden",
|
|
18
19
|
flexWrap: "nowrap",
|
|
19
20
|
width: "100% !important",
|
|
20
21
|
background: "transparent",
|
|
@@ -114,10 +115,10 @@ export default function Card(theme){
|
|
|
114
115
|
margin: "0px",
|
|
115
116
|
marginBottom: "8px",
|
|
116
117
|
lineHeight: "1",
|
|
117
|
-
|
|
118
118
|
maxWidth: "200px",
|
|
119
119
|
whiteSpace: "nowrap",
|
|
120
120
|
overflowX: "auto",
|
|
121
|
+
overflowY: "hidden",
|
|
121
122
|
scrollbarWidth: "none",
|
|
122
123
|
"&::-webkit-scrollbar": {
|
|
123
124
|
display: "none",
|