alchemy-chimera 1.3.0-alpha.3 → 1.3.0-alpha.4
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/CHANGELOG.md +5 -0
- package/assets/scripts/chimera/chimera.js +12 -0
- package/assets/stylesheets/chimera/chimera.scss +31 -0
- package/controller/chimera_editor_controller.js +1 -2
- package/controller/chimera_static_controller.js +0 -0
- package/package.json +1 -1
- package/view/chimera/sidebar.hwk +0 -0
- package/view/layouts/chimera_body.hwk +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -16,4 +16,16 @@ hawkejs.scene.after({
|
|
|
16
16
|
notification.remove();
|
|
17
17
|
}, 2500);
|
|
18
18
|
}, 4 * 1000);
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
hawkejs.scene.on('rendered', function onRendered(vars, renderer) {
|
|
22
|
+
|
|
23
|
+
let manager = vars.get('toolbar_manager');
|
|
24
|
+
|
|
25
|
+
if (!manager) {
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
let toolbar = document.querySelector('al-editor-toolbar');
|
|
30
|
+
toolbar.toolbar_manager = manager;
|
|
19
31
|
});
|
|
@@ -639,4 +639,35 @@ al-field {
|
|
|
639
639
|
max-height: 25vh;
|
|
640
640
|
}
|
|
641
641
|
}
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
al-table {
|
|
645
|
+
display: block;
|
|
646
|
+
background-color: white;
|
|
647
|
+
border: 1px solid #dadee0;
|
|
648
|
+
|
|
649
|
+
table thead {
|
|
650
|
+
td, th {
|
|
651
|
+
background-color: #F4F5F9;
|
|
652
|
+
input {
|
|
653
|
+
background-color: white;
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
footer {
|
|
659
|
+
background-color: #F4F5F9;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
table tbody tr:hover {
|
|
663
|
+
td, th {
|
|
664
|
+
background-color: #edf0f5;
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
table tbody tr.aft-selected {
|
|
669
|
+
td, th {
|
|
670
|
+
background-color: #edeff5;
|
|
671
|
+
}
|
|
672
|
+
}
|
|
642
673
|
}
|
|
File without changes
|
package/package.json
CHANGED
package/view/chimera/sidebar.hwk
CHANGED
|
File without changes
|
|
File without changes
|