sccoreui 6.1.44 → 6.1.45
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/App.scss
CHANGED
|
@@ -2109,12 +2109,15 @@ button[aria-expanded="true"] {
|
|
|
2109
2109
|
border-bottom-left-radius: 0;
|
|
2110
2110
|
height: 44px;
|
|
2111
2111
|
box-shadow: none !important;
|
|
2112
|
-
width:
|
|
2112
|
+
width: 200px !important;
|
|
2113
2113
|
|
|
2114
2114
|
&:focus {
|
|
2115
2115
|
border-top-left-radius: 0 !important;
|
|
2116
2116
|
border-bottom-left-radius: 0 !important;
|
|
2117
2117
|
}
|
|
2118
|
+
.p-inputwrapper-filled{
|
|
2119
|
+
background: #ffffff !important;
|
|
2120
|
+
}
|
|
2118
2121
|
}
|
|
2119
2122
|
}
|
|
2120
2123
|
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
const button_1 = require("primereact/button");
|
|
5
5
|
function BulkEditAction({ props }) {
|
|
6
|
-
var _a, _b;
|
|
6
|
+
var _a, _b, _c;
|
|
7
7
|
const { dynamicText } = props;
|
|
8
8
|
const onSave = () => {
|
|
9
9
|
if (!(props === null || props === void 0 ? void 0 : props.saveBulkEdit))
|
|
@@ -15,6 +15,6 @@ function BulkEditAction({ props }) {
|
|
|
15
15
|
return;
|
|
16
16
|
props === null || props === void 0 ? void 0 : props.discardBulkEdit();
|
|
17
17
|
};
|
|
18
|
-
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-3" }, { children: [(0, jsx_runtime_1.jsx)(button_1.Button, { className: "text-base font-semibold", text: true, onClick: onDiscard, label: ((_a = dynamicText === null || dynamicText === void 0 ? void 0 : dynamicText.bulkEditAction) === null || _a === void 0 ? void 0 : _a.discard) || "Discard" }), (0, jsx_runtime_1.jsx)(button_1.Button, { className: "text-base font-semibold", onClick: onSave, label: ((
|
|
18
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-center gap-3" }, { children: [(0, jsx_runtime_1.jsx)(button_1.Button, { className: "text-base font-semibold", text: true, onClick: onDiscard, label: ((_a = dynamicText === null || dynamicText === void 0 ? void 0 : dynamicText.bulkEditAction) === null || _a === void 0 ? void 0 : _a.discard) || "Discard" }), (0, jsx_runtime_1.jsx)(button_1.Button, { className: "text-base font-semibold", disabled: !((_b = props === null || props === void 0 ? void 0 : props.bulkEditedRecords) === null || _b === void 0 ? void 0 : _b.length), onClick: onSave, label: ((_c = dynamicText === null || dynamicText === void 0 ? void 0 : dynamicText.bulkEditAction) === null || _c === void 0 ? void 0 : _c.save) || "Update Changes" })] })));
|
|
19
19
|
}
|
|
20
20
|
exports.default = BulkEditAction;
|
|
@@ -73,7 +73,7 @@ const Conditions = (props) => {
|
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
case Types_1.FilterDataType.SELECT: {
|
|
76
|
-
return ((0, jsx_runtime_1.jsx)(dropdown_1.Dropdown, { className: "border-noround-left col-4 focus:shadow-none lh-44 h-44 dropdown-focus-none ", value:
|
|
76
|
+
return ((0, jsx_runtime_1.jsx)(dropdown_1.Dropdown, { className: "border-noround-left col-4 focus:shadow-none lh-44 h-44 dropdown-focus-none ", value: value, options: selectedColumn.options, optionLabel: "label", placeholder: (filterModelText === null || filterModelText === void 0 ? void 0 : filterModelText.elementThreePlaceHolder_DropDown) ? filterModelText.elementThreePlaceHolder_DropDown : "Select", disabled: !condition, onChange: (event) => handleDynamicFieldState(event.value) }));
|
|
77
77
|
}
|
|
78
78
|
case Types_1.FilterDataType.DATE:
|
|
79
79
|
case Types_1.FilterDataType.DATEANDTIME: {
|
|
@@ -95,7 +95,7 @@ const Conditions = (props) => {
|
|
|
95
95
|
onChange: (event) => handleOnchangeEvent(event.value) }));
|
|
96
96
|
}
|
|
97
97
|
case Types_1.FilterDataType.MULTISELECT: {
|
|
98
|
-
return ((0, jsx_runtime_1.jsx)(multi_select_dropdown_1.default, { className: "filter-multi-dropdown border-noround-left col-4 focus:shadow-none lh-44 h-44", value: value, hidePanelHeader: true, maxSelectedLabels: 1, onChange: (event) => handleDynamicFieldState(event.value), placeholder: (filterModelText === null || filterModelText === void 0 ? void 0 : filterModelText.elementThreePlaceHolder_MultiSelect) ? filterModelText.elementThreePlaceHolder_MultiSelect : "Select", options: selectedColumn.options ? selectedColumn.options.map((x) => { return Object.assign(Object.assign({}, x), { name: x.label }); }) : [], dropdownType: "default", optionLabel: "label" }));
|
|
98
|
+
return ((0, jsx_runtime_1.jsx)(multi_select_dropdown_1.default, { className: "filter-multi-dropdown border-noround-left p-0 col-4 focus:shadow-none lh-44 h-44", value: value, hidePanelHeader: true, maxSelectedLabels: 1, onChange: (event) => handleDynamicFieldState(event.value), placeholder: (filterModelText === null || filterModelText === void 0 ? void 0 : filterModelText.elementThreePlaceHolder_MultiSelect) ? filterModelText.elementThreePlaceHolder_MultiSelect : "Select", options: selectedColumn.options ? selectedColumn.options.map((x) => { return Object.assign(Object.assign({}, x), { name: x.label }); }) : [], dropdownType: "default", optionLabel: "label" }));
|
|
99
99
|
}
|
|
100
100
|
default:
|
|
101
101
|
return ((0, jsx_runtime_1.jsx)(dropdown_1.Dropdown, { className: "border-noround-left col-4 focus:shadow-none lh-44 h-44 dropdown-focus-none", options: [], value: value, optionLabel: "name", placeholder: (filterModelText === null || filterModelText === void 0 ? void 0 : filterModelText.elementThreePlaceHolder_DropDown) ? filterModelText.elementThreePlaceHolder_DropDown : "Select", disabled: true }));
|