seat-editor 1.6.24 → 1.6.25

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.
@@ -311,11 +311,11 @@ const SideTool = ({ dragOnly, deleteAutorized, }) => {
311
311
  placement: "right",
312
312
  } }), _jsx(ButtonTools, { buttonProps: {
313
313
  onClick: () => toogleSetLockBackground(),
314
- icon: lockBackground ? _jsx(LockOpen, {}) : _jsx(Lock, {}),
314
+ icon: lockBackground ? _jsx(Lock, {}) : _jsx(LockOpen, {}),
315
315
  type: "text",
316
316
  name: "trash",
317
317
  }, items: [], popoverProps: {
318
- content: _jsx("div", { children: !lockBackground ? "Unlock Background" : "Lock Background" }),
318
+ content: _jsx("div", { children: lockBackground ? "Unlock Background" : "Lock Background" }),
319
319
  trigger: "hover",
320
320
  placement: "right",
321
321
  } })] }));
@@ -330,11 +330,11 @@ const SideTool = ({ dragOnly, deleteAutorized, }) => {
330
330
  }}/>
331
331
  <ButtonTools buttonProps={{
332
332
  onClick: () => toogleSetLockBackground(),
333
- icon: lockBackground ? <LockOpen /> : <Lock />,
333
+ icon: lockBackground ? <Lock /> : <LockOpen />,
334
334
  type: "text",
335
335
  name: "trash",
336
336
  }} items={[]} popoverProps={{
337
- content: <div>{!lockBackground ? "Unlock Background" : "Lock Background"}</div>,
337
+ content: <div>{lockBackground ? "Unlock Background" : "Lock Background"}</div>,
338
338
  trigger: "hover",
339
339
  placement: "right",
340
340
  }}/>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seat-editor",
3
- "version": "1.6.24",
3
+ "version": "1.6.25",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",