orbiq-neural-ui-kit 1.0.8 → 1.0.9
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/README.md
CHANGED
|
@@ -134,15 +134,17 @@ import {
|
|
|
134
134
|
</neural-button>
|
|
135
135
|
</neural-page-header>
|
|
136
136
|
|
|
137
|
-
<!-- Contenido
|
|
138
|
-
<div class="p-6">
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
</neural-alert>
|
|
142
|
-
|
|
143
|
-
<!-- Aquí irían tus tablas, gráficos, etc. -->
|
|
137
|
+
<!-- Contenido Principal: Aquí se renderizarán las Páginas hijas -->
|
|
138
|
+
<div class="p-6 h-full w-full bg-gray-50/50">
|
|
139
|
+
<!-- El router-outlet cargará dinámicamente las páginas dentro del layout -->
|
|
140
|
+
<router-outlet></router-outlet>
|
|
144
141
|
</div>
|
|
145
142
|
|
|
143
|
+
<!-- Organismo/Átomo: Footer opcional al final de la pantalla -->
|
|
144
|
+
<footer footer class="border-t border-gray-200 p-4 text-center text-sm text-gray-500">
|
|
145
|
+
© 2026 Orbiq Neural UI. Todos los derechos reservados.
|
|
146
|
+
</footer>
|
|
147
|
+
|
|
146
148
|
</neural-desktop-shell>
|
|
147
149
|
```
|
|
148
150
|
|
|
@@ -13593,6 +13593,8 @@ class NeuralDesktopShellComponent {
|
|
|
13593
13593
|
<ng-content></ng-content>
|
|
13594
13594
|
</div>
|
|
13595
13595
|
}
|
|
13596
|
+
|
|
13597
|
+
<ng-content select="[footer]"></ng-content>
|
|
13596
13598
|
</div>
|
|
13597
13599
|
</div>
|
|
13598
13600
|
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: NeuralScrollAreaComponent, selector: "neural-scroll-area", inputs: ["orientation", "scrollHideDelay", "viewportClass", "rootClasses"] }] });
|
|
@@ -13623,6 +13625,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.4", ngImpor
|
|
|
13623
13625
|
<ng-content></ng-content>
|
|
13624
13626
|
</div>
|
|
13625
13627
|
}
|
|
13628
|
+
|
|
13629
|
+
<ng-content select="[footer]"></ng-content>
|
|
13626
13630
|
</div>
|
|
13627
13631
|
</div>
|
|
13628
13632
|
`
|