@difizen/libro-core 0.1.6 → 0.1.8
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/es/index.less
CHANGED
|
@@ -70,12 +70,17 @@
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
.libro-header-center {
|
|
73
|
+
.mana-toolbar {
|
|
74
|
+
justify-content: center;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.libro-header-center,
|
|
79
|
+
.libro-header-right {
|
|
73
80
|
flex: 1;
|
|
74
81
|
overflow: hidden;
|
|
75
82
|
|
|
76
83
|
.mana-toolbar {
|
|
77
|
-
justify-content: center;
|
|
78
|
-
|
|
79
84
|
.mana-toolbar-item {
|
|
80
85
|
display: flex;
|
|
81
86
|
align-items: center;
|
|
@@ -2,6 +2,10 @@ import { ManaModule, ConfigurationModule } from '@difizen/mana-app';
|
|
|
2
2
|
import { ConfigurationPanelView } from "./configuration-panel-view.js";
|
|
3
3
|
import { DefaultConfigurationRenderContribution } from "./configuration-render-contribution.js";
|
|
4
4
|
import { SettingEditorView } from "./setting-editor-view.js";
|
|
5
|
-
import { SettingTreeService } from
|
|
6
|
-
import { SettingTreeView } from
|
|
7
|
-
|
|
5
|
+
// import { SettingTreeService } from './setting-tree-service.js';
|
|
6
|
+
// import { SettingTreeView } from './setting-tree-view.js';
|
|
7
|
+
|
|
8
|
+
export var SettingEditorModule = ManaModule.create().register(SettingEditorView, DefaultConfigurationRenderContribution, ConfigurationPanelView
|
|
9
|
+
// SettingTreeView,
|
|
10
|
+
// SettingTreeService,
|
|
11
|
+
).dependOn(ConfigurationModule);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@difizen/libro-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"libro",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@ant-design/icons": "^5.1.0",
|
|
37
|
-
"@difizen/libro-code-editor": "^0.1.
|
|
38
|
-
"@difizen/libro-common": "^0.1.
|
|
39
|
-
"@difizen/libro-shared-model": "^0.1.
|
|
40
|
-
"@difizen/libro-virtualized": "^0.1.
|
|
37
|
+
"@difizen/libro-code-editor": "^0.1.8",
|
|
38
|
+
"@difizen/libro-common": "^0.1.8",
|
|
39
|
+
"@difizen/libro-shared-model": "^0.1.8",
|
|
40
|
+
"@difizen/libro-virtualized": "^0.1.8",
|
|
41
41
|
"@difizen/mana-app": "latest",
|
|
42
42
|
"@difizen/mana-l10n": "latest",
|
|
43
43
|
"@difizen/mana-react": "latest",
|
package/src/index.less
CHANGED
|
@@ -70,12 +70,17 @@
|
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
.libro-header-center {
|
|
73
|
+
.mana-toolbar {
|
|
74
|
+
justify-content: center;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.libro-header-center,
|
|
79
|
+
.libro-header-right {
|
|
73
80
|
flex: 1;
|
|
74
81
|
overflow: hidden;
|
|
75
82
|
|
|
76
83
|
.mana-toolbar {
|
|
77
|
-
justify-content: center;
|
|
78
|
-
|
|
79
84
|
.mana-toolbar-item {
|
|
80
85
|
display: flex;
|
|
81
86
|
align-items: center;
|
|
@@ -3,15 +3,15 @@ import { ManaModule, ConfigurationModule } from '@difizen/mana-app';
|
|
|
3
3
|
import { ConfigurationPanelView } from './configuration-panel-view.js';
|
|
4
4
|
import { DefaultConfigurationRenderContribution } from './configuration-render-contribution.js';
|
|
5
5
|
import { SettingEditorView } from './setting-editor-view.js';
|
|
6
|
-
import { SettingTreeService } from './setting-tree-service.js';
|
|
7
|
-
import { SettingTreeView } from './setting-tree-view.js';
|
|
6
|
+
// import { SettingTreeService } from './setting-tree-service.js';
|
|
7
|
+
// import { SettingTreeView } from './setting-tree-view.js';
|
|
8
8
|
|
|
9
9
|
export const SettingEditorModule = ManaModule.create()
|
|
10
10
|
.register(
|
|
11
11
|
SettingEditorView,
|
|
12
12
|
DefaultConfigurationRenderContribution,
|
|
13
13
|
ConfigurationPanelView,
|
|
14
|
-
SettingTreeView,
|
|
15
|
-
SettingTreeService,
|
|
14
|
+
// SettingTreeView,
|
|
15
|
+
// SettingTreeService,
|
|
16
16
|
)
|
|
17
17
|
.dependOn(ConfigurationModule);
|