sccoreui 5.9.4 → 5.9.6
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.
|
@@ -45,7 +45,7 @@ const FormulaComponent = (props) => {
|
|
|
45
45
|
else {
|
|
46
46
|
setSelectedItem([item.id]);
|
|
47
47
|
}
|
|
48
|
-
let chipElm = `<div class="formulaChipElm max-w-8rem w-max h-2rem overflow-hidden text-overflow-ellipsis white-space-nowrap bg-blue-100 text-gray-600 border-round-sm p-1 ${props.formulaChipClassName}" contentEditable=${false}
|
|
48
|
+
let chipElm = `<div class="formulaChipElm max-w-8rem w-max h-2rem overflow-hidden text-overflow-ellipsis white-space-nowrap bg-blue-100 text-gray-600 border-round-sm p-1 ${props.formulaChipClassName}" contentEditable=${false} itemid="${item === null || item === void 0 ? void 0 : item.id}" title=${item === null || item === void 0 ? void 0 : item.name}>${item === null || item === void 0 ? void 0 : item.name}</div>`;
|
|
49
49
|
let currentText = contentEditableDivRef.current.innerHTML === '<span class="formulaSpanElm"></span>' ? '<span class="formulaSpanElm"></span>' : contentEditableDivRef.current.innerHTML.replaceAll('<br>', '');
|
|
50
50
|
const index = contentEditableDivRef.current.innerHTML.indexOf((_a = document.querySelector('.formulaSpanElm.activeSpanElm')) === null || _a === void 0 ? void 0 : _a.outerHTML);
|
|
51
51
|
if (index === -1 && (contentEditableCursorIndex === null || contentEditableCursorIndex === 0)) {
|
|
@@ -371,7 +371,7 @@ const FormulaComponent = (props) => {
|
|
|
371
371
|
let chipElm = '';
|
|
372
372
|
if (id) {
|
|
373
373
|
let item = fieldOptions.find((x) => x.id === id[0]);
|
|
374
|
-
chipElm = `<div class="formulaChipElm max-w-8rem w-max h-2rem overflow-hidden text-overflow-ellipsis white-space-nowrap bg-blue-100 text-gray-600 border-round-sm p-1" contentEditable=${false}
|
|
374
|
+
chipElm = `<div class="formulaChipElm max-w-8rem w-max h-2rem overflow-hidden text-overflow-ellipsis white-space-nowrap bg-blue-100 text-gray-600 border-round-sm p-1" contentEditable=${false} itemid="${item === null || item === void 0 ? void 0 : item.id}" title="${item === null || item === void 0 ? void 0 : item.name}">${item === null || item === void 0 ? void 0 : item.name}</div>`;
|
|
375
375
|
}
|
|
376
376
|
// chipElm = text.replace(text, t)
|
|
377
377
|
const placeholderText = splitText[i].replace(pattern, '|');
|
|
@@ -422,7 +422,7 @@ const FormulaComponent = (props) => {
|
|
|
422
422
|
return (0, jsx_runtime_1.jsx)(inputnumber_1.InputNumber, Object.assign({ useGrouping: false, min: 0, minFractionDigits: 2, maxFractionDigits: 2 }, props === null || props === void 0 ? void 0 : props.field, { onChange: (e) => (props === null || props === void 0 ? void 0 : props.onChange) && (props === null || props === void 0 ? void 0 : props.onChange(e)), placeholder: 'Enter Number', value: props === null || props === void 0 ? void 0 : props.inputValue, className: 'border-none w-8', inputClassName: 'border-none focus:shadow-none' }));
|
|
423
423
|
}
|
|
424
424
|
case "CALCULATION": {
|
|
425
|
-
const pattern = /[a-f0-9]{24}/g;
|
|
425
|
+
const pattern = /(?:[a-f0-9]{24}|msrp|map|costprice)/g;
|
|
426
426
|
// if(props?.formulaValue){
|
|
427
427
|
const ids = props === null || props === void 0 ? void 0 : props.formulaValue.match(pattern);
|
|
428
428
|
let text = props === null || props === void 0 ? void 0 : props.formulaValue;
|