@sequent-org/moodboard 1.0.22 → 1.0.24
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/package.json +1 -1
- package/src/ui/Toolbar.js +2 -2
- package/src/ui/styles/workspace.css +3 -2
package/package.json
CHANGED
package/src/ui/Toolbar.js
CHANGED
|
@@ -53,14 +53,14 @@ export class Toolbar {
|
|
|
53
53
|
{ id: 'image', iconName: 'image', title: 'Добавить картинку', type: 'image-add' },
|
|
54
54
|
{ id: 'shapes', iconName: 'shapes', title: 'Фигуры', type: 'custom-shapes' },
|
|
55
55
|
{ id: 'pencil', iconName: 'pencil', title: 'Рисование', type: 'custom-draw' },
|
|
56
|
-
{ id: 'comments', iconName: 'comments', title: 'Комментарии', type: 'custom-comments' },
|
|
56
|
+
// { id: 'comments', iconName: 'comments', title: 'Комментарии', type: 'custom-comments' }, // Временно скрыто
|
|
57
57
|
{ id: 'attachments', iconName: 'attachments', title: 'Файлы', type: 'custom-attachments' },
|
|
58
58
|
{ id: 'emoji', iconName: 'emoji', title: 'Эмоджи', type: 'custom-emoji' }
|
|
59
59
|
];
|
|
60
60
|
|
|
61
61
|
// Существующие элементы ниже новых
|
|
62
62
|
const existingTools = [
|
|
63
|
-
|
|
63
|
+
// { id: 'frame', iconName: 'frame', title: 'Добавить фрейм', type: 'frame' }, // Временно скрыто
|
|
64
64
|
{ id: 'divider', type: 'divider' },
|
|
65
65
|
{ id: 'clear', iconName: 'clear', title: 'Очистить холст', type: 'clear' },
|
|
66
66
|
{ id: 'divider', type: 'divider' },
|
|
@@ -547,12 +547,13 @@
|
|
|
547
547
|
display: inline-flex;
|
|
548
548
|
align-items: center;
|
|
549
549
|
justify-content: center;
|
|
550
|
-
width:
|
|
551
|
-
height:
|
|
550
|
+
width: 30px;
|
|
551
|
+
height: 30px;
|
|
552
552
|
border: none;
|
|
553
553
|
border-radius: 8px;
|
|
554
554
|
/* background: #f0f0f0; */
|
|
555
555
|
/* color: #333; */
|
|
556
|
+
background: none;
|
|
556
557
|
font-size: 16px;
|
|
557
558
|
cursor: pointer;
|
|
558
559
|
transition: all 0.2s ease;
|