@threedddplus/logoeditor 0.0.121 → 0.0.123
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/components/Rightmenu/constants.d.ts +1 -0
- package/dist/logoeditor.cjs.development.js +94 -52
- package/dist/logoeditor.cjs.development.js.map +1 -1
- package/dist/logoeditor.cjs.production.min.js +1 -1
- package/dist/logoeditor.cjs.production.min.js.map +1 -1
- package/dist/logoeditor.esm.js +94 -52
- package/dist/logoeditor.esm.js.map +1 -1
- package/package.json +1 -2
@@ -2997,18 +2997,18 @@ var fabricSlice = function fabricSlice(set, get) {
|
|
2997
2997
|
filterValue: event
|
2998
2998
|
});
|
2999
2999
|
if (event === 'All') {
|
3000
|
-
get().setFilteredMascots(get().availableMascots
|
3001
|
-
|
3002
|
-
|
3000
|
+
get().setFilteredMascots(get().availableMascots
|
3001
|
+
// get().availableMascots.map((item) => item.thumbnail)
|
3002
|
+
);
|
3003
3003
|
} else {
|
3004
3004
|
var filteredData = get().availableMascots.filter(function (item) {
|
3005
3005
|
return item.tags.includes(event);
|
3006
3006
|
});
|
3007
|
-
get().setFilteredMascots(filteredData
|
3008
|
-
|
3009
|
-
}));
|
3007
|
+
get().setFilteredMascots(filteredData);
|
3008
|
+
// get().setFilteredMascots(filteredData.map((item) => item.thumbnail));
|
3010
3009
|
}
|
3011
3010
|
},
|
3011
|
+
|
3012
3012
|
filterValue: '',
|
3013
3013
|
displayProductColor: false,
|
3014
3014
|
setDisplayProductColor: function setDisplayProductColor() {
|
@@ -3963,6 +3963,7 @@ var converterSlice = function converterSlice(set, get) {
|
|
3963
3963
|
if (canvasToLoad === void 0) {
|
3964
3964
|
canvasToLoad = use3dddPlus.getState().popupCanv;
|
3965
3965
|
}
|
3966
|
+
// console.log("svgstr\n",svgstr , 'color-VAL\n',colorValue ,'canvas\n' ,canvasToLoad);
|
3966
3967
|
fabric.fabric.loadSVGFromString(
|
3967
3968
|
//@ts-ignore
|
3968
3969
|
new String(svgstr), function (objects, options) {
|
@@ -3984,6 +3985,7 @@ var converterSlice = function converterSlice(set, get) {
|
|
3984
3985
|
node = item;
|
3985
3986
|
}
|
3986
3987
|
});
|
3988
|
+
console.log(node, path);
|
3987
3989
|
if (node && path) {
|
3988
3990
|
var _resItem$node$childre, _resItem$node$childre2;
|
3989
3991
|
var fontSize = (_resItem$node$childre = resItem.node.children[0]) == null ? void 0 : (_resItem$node$childre2 = _resItem$node$childre.getAttribute('font-size')) == null ? void 0 : _resItem$node$childre2.replace('px', '');
|
@@ -4367,12 +4369,14 @@ var converterSlice = function converterSlice(set, get) {
|
|
4367
4369
|
if (convert === void 0) {
|
4368
4370
|
convert = true;
|
4369
4371
|
}
|
4372
|
+
console.log("ext\n", ext);
|
4370
4373
|
// use3dddPlus.setState({ uploadImageModalDisplay: true });
|
4371
4374
|
use3dddPlus.setState({
|
4372
4375
|
loading: true
|
4373
4376
|
});
|
4374
4377
|
if (convert) {
|
4375
4378
|
if (isSVG) {
|
4379
|
+
console.log("entering into fileupload-->");
|
4376
4380
|
var reader = new FileReader();
|
4377
4381
|
reader.onload = function (e) {
|
4378
4382
|
use3dddPlus.setState({
|
@@ -4382,6 +4386,7 @@ var converterSlice = function converterSlice(set, get) {
|
|
4382
4386
|
};
|
4383
4387
|
reader.readAsText(data);
|
4384
4388
|
} else {
|
4389
|
+
console.log("entering INTO ImageTracer-->");
|
4385
4390
|
ImageTracer.imageToSVG(data, function (svgstr) {
|
4386
4391
|
use3dddPlus.setState({
|
4387
4392
|
imageData: svgstr
|
@@ -4390,6 +4395,7 @@ var converterSlice = function converterSlice(set, get) {
|
|
4390
4395
|
}, ext && (ext.toLowerCase() === 'jpg' || ext.toLowerCase() === 'jpeg') ? optionpresets.jpg : ext.toLowerCase() === 'png' ? optionpresets.png : optionpresets["default"]);
|
4391
4396
|
}
|
4392
4397
|
} else {
|
4398
|
+
console.log("entering iINTO PROCESSIMAGE--->");
|
4393
4399
|
processImage(data, 8);
|
4394
4400
|
}
|
4395
4401
|
},
|
@@ -6810,36 +6816,19 @@ var PopUpCanvas = function PopUpCanvas() {
|
|
6810
6816
|
popupCanvas: popupCanvas
|
6811
6817
|
});
|
6812
6818
|
popupCanvas.setActiveObject(sel);
|
6813
|
-
// {
|
6814
|
-
// _objects: sel._objects.filter((obj) => obj.type !== 'line'),
|
6815
|
-
// }
|
6816
|
-
// popupCanvas.remove(...popupCanvas.getObjects());
|
6817
6819
|
popupCanvas.requestRenderAll();
|
6818
6820
|
var clipboard;
|
6819
6821
|
popupCanvas.getActiveObject().clone(function (cloned) {
|
6820
6822
|
clipboard = cloned;
|
6821
|
-
// });
|
6822
|
-
// if (clipboard.type === 'activeSelection') {
|
6823
|
-
// clipboard.canvas = canvas;
|
6824
|
-
// const objs = [];
|
6825
|
-
// clipboard.forEachObject(function (obj) {
|
6826
|
-
// objs.push(obj);
|
6827
|
-
// });
|
6828
|
-
// const alltogetherObj = new fabric.Group(objs, {});
|
6829
|
-
// canvas.centerObject(alltogetherObj);
|
6830
|
-
// canvas.add(alltogetherObj);
|
6831
|
-
// canvas.setActiveObject(alltogetherObj);
|
6832
|
-
// alltogetherObj.setCoords();
|
6833
|
-
// use3dddPlus.getState().forStoringAllObject(alltogetherObj); //for pushing the data into array for layers
|
6834
|
-
// } else {
|
6835
|
-
// canvas.add(clipboard);
|
6836
|
-
// }
|
6837
|
-
// canvas.requestRenderAll();
|
6838
|
-
// popupCanvas.clear();
|
6839
6823
|
if (clipboard && clipboard.type === 'activeSelection') {
|
6840
6824
|
clipboard.canvas = canvas;
|
6841
6825
|
var objs = [];
|
6842
6826
|
clipboard.forEachObject(function (obj) {
|
6827
|
+
if (!obj.id) {
|
6828
|
+
obj.set({
|
6829
|
+
id: use3dddPlus.getState().guid()
|
6830
|
+
});
|
6831
|
+
}
|
6843
6832
|
objs.push(obj);
|
6844
6833
|
});
|
6845
6834
|
var alltogetherObj = new fabric.fabric.Group(objs, {});
|
@@ -6848,7 +6837,8 @@ var PopUpCanvas = function PopUpCanvas() {
|
|
6848
6837
|
canvas.setActiveObject(alltogetherObj);
|
6849
6838
|
alltogetherObj.set({
|
6850
6839
|
//@ts-ignore
|
6851
|
-
colorFill: use3dddPlus.getState().colorFill
|
6840
|
+
colorFill: use3dddPlus.getState().colorFill,
|
6841
|
+
id: use3dddPlus.getState().guid()
|
6852
6842
|
});
|
6853
6843
|
alltogetherObj.setCoords();
|
6854
6844
|
use3dddPlus.getState().forStoringAllObject(alltogetherObj); //for pushing the data into array for layers
|
@@ -7336,7 +7326,7 @@ var PopUpCanvas = function PopUpCanvas() {
|
|
7336
7326
|
}));
|
7337
7327
|
};
|
7338
7328
|
|
7339
|
-
// import
|
7329
|
+
// import axios from 'axios';
|
7340
7330
|
var UploadLogo = function UploadLogo() {
|
7341
7331
|
var _useState = React.useState(null),
|
7342
7332
|
setSelectedFile = _useState[1];
|
@@ -7393,7 +7383,6 @@ var UploadLogo = function UploadLogo() {
|
|
7393
7383
|
_context.next = 21;
|
7394
7384
|
break;
|
7395
7385
|
}
|
7396
|
-
// console.log(loadImageFromURL);
|
7397
7386
|
use3dddPlus.setState({
|
7398
7387
|
loading: true
|
7399
7388
|
});
|
@@ -7401,7 +7390,6 @@ var UploadLogo = function UploadLogo() {
|
|
7401
7390
|
return aiConvert(data);
|
7402
7391
|
case 17:
|
7403
7392
|
aiToSvg = _context.sent;
|
7404
|
-
// console.log(aiToSvg)
|
7405
7393
|
fetch(aiToSvg.s3_file_url + '?timestamp=' + Date.now()).then(function (response) {
|
7406
7394
|
return response.text();
|
7407
7395
|
}).then(function (svgText) {
|
@@ -7415,30 +7403,40 @@ var UploadLogo = function UploadLogo() {
|
|
7415
7403
|
_context.next = 36;
|
7416
7404
|
break;
|
7417
7405
|
case 21:
|
7418
|
-
// const imageBuffer = await sharp(data)
|
7419
|
-
// .resize(300, 300) // Resize the image to 300x300 pixels
|
7420
|
-
// .toBuffer();
|
7421
|
-
// const imaeBlob = new Blob([imageBuffer], { type: 'image/png' });
|
7422
|
-
// let objectURL = URL.createObjectURL(data);
|
7423
7406
|
formData = new FormData();
|
7424
7407
|
formData.append('image', data);
|
7425
|
-
|
7426
|
-
|
7408
|
+
/* axios({
|
7409
|
+
url: "https://vectorizer.ai/api/v1/vectorize",
|
7410
|
+
method: "POST",
|
7411
|
+
headers :{
|
7412
|
+
user: 'vks34swmmj4s8wg',
|
7413
|
+
pass: 'f9ivolvk1mc5khc7ja53bp2rst5d4cuk5q02oqfoj3mn1ag3sig2',
|
7414
|
+
},
|
7415
|
+
data: formData,
|
7416
|
+
})
|
7417
|
+
.then((res) => {console.log(res);})
|
7418
|
+
.catch((err) => {console.log(err)});*/
|
7419
|
+
_context.next = 25;
|
7427
7420
|
return fetch('https://imagesharpher-f4b4o225iq-ue.a.run.app/upload', {
|
7428
7421
|
method: 'POST',
|
7422
|
+
/*headers :{
|
7423
|
+
user: 'vks34swmmj4s8wg',
|
7424
|
+
pass: 'f9ivolvk1mc5khc7ja53bp2rst5d4cuk5q02oqfoj3mn1ag3sig2',
|
7425
|
+
},*/
|
7429
7426
|
body: formData
|
7430
7427
|
});
|
7431
|
-
case
|
7428
|
+
case 25:
|
7432
7429
|
response = _context.sent;
|
7433
7430
|
if (!response.ok) {
|
7434
7431
|
_context.next = 35;
|
7435
7432
|
break;
|
7436
7433
|
}
|
7434
|
+
console.log(response);
|
7437
7435
|
_context.next = 30;
|
7438
7436
|
return response.blob();
|
7439
7437
|
case 30:
|
7440
7438
|
blob = _context.sent;
|
7441
|
-
imageUrl = URL.createObjectURL(blob);
|
7439
|
+
imageUrl = URL.createObjectURL(blob);
|
7442
7440
|
imageToSVG(imageUrl, ext);
|
7443
7441
|
_context.next = 36;
|
7444
7442
|
break;
|
@@ -8379,81 +8377,107 @@ var Layers = function Layers(_ref) {
|
|
8379
8377
|
|
8380
8378
|
var fontFamilies = [{
|
8381
8379
|
name: 'Accel',
|
8380
|
+
label: 'Accel',
|
8382
8381
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/accelerator_richardson.woff'
|
8383
8382
|
}, {
|
8384
8383
|
name: 'Athletic Block',
|
8384
|
+
label: 'Athletic Block',
|
8385
8385
|
src: 'https://storage.googleapis.com/3ddplusgcp/logoEditor/assets/fonts/athletic.ttf'
|
8386
8386
|
}, {
|
8387
8387
|
name: 'Ballpark',
|
8388
|
+
label: 'Ballpark',
|
8388
8389
|
src: 'https://storage.googleapis.com/3ddplusgcp/logoEditor/assets/fonts/ballpark.TTF'
|
8389
8390
|
}, {
|
8390
8391
|
name: 'BebasKai',
|
8392
|
+
label: 'BebasKai',
|
8391
8393
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/BebasKai.otf'
|
8392
8394
|
}, {
|
8393
8395
|
name: 'Beton CG ExtraBold',
|
8396
|
+
label: 'Beton CG ExtraBold',
|
8394
8397
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/Beton_CG_ExtraBold_Regular.otf'
|
8395
8398
|
}, {
|
8396
8399
|
name: 'Brush Script',
|
8400
|
+
label: 'Brush Script',
|
8397
8401
|
src: 'https://storage.googleapis.com/3ddplusgcp/logoEditor/assets/fonts/brush-script-3.ttf'
|
8398
8402
|
}, {
|
8399
8403
|
name: 'Century',
|
8404
|
+
label: 'Century',
|
8400
8405
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/richcent.woff'
|
8401
8406
|
}, {
|
8402
8407
|
name: 'City Block',
|
8408
|
+
label: 'City Block',
|
8403
8409
|
src: 'https://storage.googleapis.com/3ddplusgcp/logoEditor/assets/fonts/cityb.woff'
|
8404
8410
|
}, {
|
8405
8411
|
name: 'Condensed Block',
|
8412
|
+
label: 'Condensed Block',
|
8406
8413
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/aoalpha0.woff'
|
8407
8414
|
}, {
|
8408
8415
|
name: 'Copper',
|
8416
|
+
label: 'Copper',
|
8409
8417
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/copgothb.woff'
|
8410
8418
|
}, {
|
8411
8419
|
name: 'Euro Block',
|
8420
|
+
label: 'Euro Block',
|
8412
8421
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/handgotb.woff'
|
8413
8422
|
}, {
|
8414
8423
|
name: 'Full Block',
|
8424
|
+
label: 'Full Block',
|
8415
8425
|
src: 'https://storage.googleapis.com/3ddplusgcp/logoEditor/assets/fonts/full_block.woff'
|
8416
8426
|
}, {
|
8417
8427
|
name: 'Heritage',
|
8428
|
+
label: 'Heritage',
|
8418
8429
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/bebaskai-regular.woff'
|
8419
8430
|
}, {
|
8420
8431
|
name: 'LakesightPersonalUseOnly',
|
8432
|
+
label: 'Lakesight',
|
8421
8433
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/SocietyEditor_Personal_Use.ttf'
|
8422
8434
|
}, {
|
8423
8435
|
name: 'Machine',
|
8436
|
+
label: 'Machine',
|
8424
8437
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/machinen.woff'
|
8425
8438
|
}, {
|
8426
8439
|
name: 'Magento',
|
8440
|
+
label: 'Magento',
|
8427
8441
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/magnetob.woff'
|
8428
8442
|
}, {
|
8429
8443
|
name: 'Niramit Extrabold',
|
8444
|
+
label: 'Niramit',
|
8430
8445
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/Niramit-Bold.ttf'
|
8431
8446
|
}, {
|
8432
8447
|
name: 'Plain',
|
8448
|
+
label: 'Plain',
|
8433
8449
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/plain.woff'
|
8434
8450
|
}, {
|
8435
8451
|
name: 'Pro Block',
|
8452
|
+
label: 'Pro Block',
|
8436
8453
|
src: 'https://storage.googleapis.com/3ddplusgcp/logoEditor/assets/fonts/pro_block.woff'
|
8437
8454
|
}, {
|
8438
8455
|
name: 'Puff',
|
8456
|
+
label: 'Puff',
|
8439
8457
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/new.woff'
|
8440
8458
|
}, {
|
8441
8459
|
name: 'SocietyEditorPersonalUse',
|
8460
|
+
label: 'Society',
|
8442
8461
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/SocietyEditor_Personal_Use.ttf'
|
8443
8462
|
}, {
|
8444
8463
|
name: 'Square',
|
8464
|
+
label: 'Square',
|
8445
8465
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/sqr721be.woff'
|
8446
8466
|
}, {
|
8447
|
-
name: '
|
8467
|
+
name: 'Swiss721BT-BoldCondensed',
|
8468
|
+
label: 'Swiss Condensed',
|
8448
8469
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/swz721bc.woff'
|
8449
8470
|
}, {
|
8450
8471
|
name: 'Tiffany',
|
8472
|
+
label: 'Tiffany',
|
8451
8473
|
src: 'https://storage.googleapis.com/3ddplusgcp/logoEditor/assets/fonts/tiffany.woff'
|
8452
8474
|
}, {
|
8453
8475
|
name: 'Times',
|
8476
|
+
label: 'Times',
|
8454
8477
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/timesrich.woff'
|
8455
8478
|
}, {
|
8456
8479
|
name: 'Uni Script',
|
8480
|
+
label: 'Uni Script',
|
8457
8481
|
src: 'https://storage.googleapis.com/3ddplusgcp/richardson-customizer/fonts/scrpjet2.woff'
|
8458
8482
|
}];
|
8459
8483
|
var textShapes = [{
|
@@ -8558,7 +8582,7 @@ var TextProperties = function TextProperties(_ref) {
|
|
8558
8582
|
}, fontFamilies.map(function (list) {
|
8559
8583
|
return React__default.createElement(React__default.Fragment, null, React__default.createElement("option", {
|
8560
8584
|
value: list.name
|
8561
|
-
}, list.
|
8585
|
+
}, list.label));
|
8562
8586
|
})), React__default.createElement("div", {
|
8563
8587
|
className: "uppercase font-bold text-sm mb-[8.5px]"
|
8564
8588
|
}, "Style"), React__default.createElement("div", {
|
@@ -8957,7 +8981,9 @@ var Properties = function Properties(_ref2) {
|
|
8957
8981
|
while (1) switch (_context3.prev = _context3.next) {
|
8958
8982
|
case 0:
|
8959
8983
|
fontFamily = e.target.value;
|
8960
|
-
textSelected.set(
|
8984
|
+
textSelected.set({
|
8985
|
+
'fontFamily': fontFamily
|
8986
|
+
});
|
8961
8987
|
textSelected.set({
|
8962
8988
|
text: textInfo,
|
8963
8989
|
charSpacing: 0
|
@@ -10214,7 +10240,7 @@ var Rightmenu = function Rightmenu() {
|
|
10214
10240
|
use3dddPlus.setState({
|
10215
10241
|
showCrossSave: true
|
10216
10242
|
});
|
10217
|
-
if (canvas.getObjects().length >
|
10243
|
+
if (canvas.getObjects().length > 2) {
|
10218
10244
|
var hasTransparent = allColor.includes('transparent');
|
10219
10245
|
var colorCount = hasTransparent ? allColor.length - 1 : allColor.length;
|
10220
10246
|
if (colorCount < 9) {
|
@@ -14130,9 +14156,7 @@ var AddMascot = function AddMascot() {
|
|
14130
14156
|
});
|
14131
14157
|
});
|
14132
14158
|
use3dddPlus.getState().setAvailableMascots(availableMascots);
|
14133
|
-
use3dddPlus.getState().setFilteredMascots(availableMascots
|
14134
|
-
return item.thumbnail;
|
14135
|
-
}));
|
14159
|
+
use3dddPlus.getState().setFilteredMascots(availableMascots);
|
14136
14160
|
}, []);
|
14137
14161
|
return React__default.createElement(React__default.Fragment, null, React__default.createElement("div", {
|
14138
14162
|
className: "bg-[#F7F7F7] absolute z-100 w-[90%] h-full pr-[56px]"
|
@@ -14174,16 +14198,16 @@ var AddMascot = function AddMascot() {
|
|
14174
14198
|
boxShadow: '0px 0px 6px #98989829'
|
14175
14199
|
},
|
14176
14200
|
onClick: function onClick() {
|
14177
|
-
return stockLogoHandler(logo);
|
14201
|
+
return stockLogoHandler(logo.thumbnail);
|
14178
14202
|
}
|
14179
14203
|
}, React__default.createElement(CardMedia, {
|
14180
|
-
src: logo,
|
14204
|
+
src: logo.thumbnail,
|
14181
14205
|
imageClass: "h-full m-[15px] mb-0"
|
14182
14206
|
}), React__default.createElement(CardBody, {
|
14183
14207
|
bodyClass: "p-2.5"
|
14184
14208
|
}, React__default.createElement(CardTitle, {
|
14185
14209
|
titleClass: "text-[11px] uppercase flex justify-center",
|
14186
|
-
name:
|
14210
|
+
name: logo.name
|
14187
14211
|
})));
|
14188
14212
|
}) : 'No Stock Logos')))), loading && React__default.createElement(Loader, null));
|
14189
14213
|
};
|
@@ -14402,6 +14426,13 @@ var SaveDesign = function SaveDesign(_ref) {
|
|
14402
14426
|
console.log('ERROR in Save Logo:', ex);
|
14403
14427
|
});
|
14404
14428
|
case 30:
|
14429
|
+
use3dddPlus.setState({
|
14430
|
+
logoName: ''
|
14431
|
+
});
|
14432
|
+
use3dddPlus.setState({
|
14433
|
+
logoTag: []
|
14434
|
+
});
|
14435
|
+
case 32:
|
14405
14436
|
case "end":
|
14406
14437
|
return _context.stop();
|
14407
14438
|
}
|
@@ -14758,6 +14789,9 @@ var LogoEditor = function LogoEditor(_ref) {
|
|
14758
14789
|
var _useState = React.useState([]),
|
14759
14790
|
fontFamilies = _useState[0],
|
14760
14791
|
setFontFamilies = _useState[1];
|
14792
|
+
React.useEffect(function () {
|
14793
|
+
setSelectedStepper(stepperId);
|
14794
|
+
}, [stepperId]);
|
14761
14795
|
React.useEffect(function () {
|
14762
14796
|
setSelectedStepper(stepperId);
|
14763
14797
|
if (stepperId === undefined) {
|
@@ -14779,7 +14813,15 @@ var LogoEditor = function LogoEditor(_ref) {
|
|
14779
14813
|
})["catch"](function (error) {
|
14780
14814
|
return console.error('Error fetching font families:', error);
|
14781
14815
|
});
|
14782
|
-
}, [
|
14816
|
+
}, [
|
14817
|
+
// stepperId,
|
14818
|
+
// customLogoColorList,
|
14819
|
+
// defaultColorList,
|
14820
|
+
// customerId,
|
14821
|
+
// logoData,
|
14822
|
+
// myLogoHandler,
|
14823
|
+
// setSelectedStepper,
|
14824
|
+
]);
|
14783
14825
|
return React__default.createElement(Modal, {
|
14784
14826
|
backdropStyle: "z-[7]",
|
14785
14827
|
contentStyle: "top-0 bottom-0 !m-[auto] z-[7] w-[80%] p-0",
|