mountain-ui 1.0.105 → 1.0.106
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mountain-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.106",
|
|
5
5
|
"description": "A comprehensive UI component library for ERP systems with field types, entities, and registry management built with Svelte",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"module": "index.js",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
const navigation = navigationRegistry.selectNavbarState();
|
|
21
21
|
|
|
22
22
|
const navigationGroups = navigationRegistry.getAllGroup();
|
|
23
|
+
const allEntitiesWithNoGroup = navigationRegistry.getAllWithNoGroup();
|
|
23
24
|
|
|
24
25
|
const targetProjectHref = projectRegistry.selectTargetProjectHref();
|
|
25
26
|
</script>
|
|
@@ -139,7 +140,8 @@
|
|
|
139
140
|
></NavbarIcon>
|
|
140
141
|
</NavbarGroup>
|
|
141
142
|
{/each}
|
|
142
|
-
{#each $
|
|
143
|
+
{#each $allEntitiesWithNoGroup as el}
|
|
144
|
+
{@const entity = entityRegistry.get(el.entity_id)}
|
|
143
145
|
<NavbarBtn href="{$targetProjectHref}/{entity.slug}" text={entity.plural_name}
|
|
144
146
|
></NavbarBtn>
|
|
145
147
|
{/each}
|
|
@@ -313,7 +315,7 @@
|
|
|
313
315
|
|
|
314
316
|
.content.settings {
|
|
315
317
|
animation: apear 0.2s ease-out;
|
|
316
|
-
|
|
318
|
+
padding: 0px;
|
|
317
319
|
}
|
|
318
320
|
|
|
319
321
|
.bottom {
|