This project was generated using Angular CLI version 21.1.0.
- Add a .npmrc file to the project
registry=https://registry.npmjs.org
@moryx:registry=https://www.myget.org/F/moryx-ci/auth/4cd70c3b-c8e8-4186-8c35-3d4c8789bbdd/npm
- Install the package with
npm install @moryx/ngx-web-framework
It is intended that releases of this package live on the moryx-ci feed
because it's an internal package which is not distributed publicly.
The Navigable Entry Editor is a is an entry editor with breadcrumbs on top. You can navigate to lists and other objects in the entry.
It has the following parameters:
- entry contains the base entry
- disabled disables all fields of the entry editor
- queryParam is the name of the query parameter in which the entry path is saved in order to navigate to a specific subentry on reloading (optional)
<navigable-entry-editor [entry]="entry" [disabled]="disabled" queryParam="entryEditor1"></navigable-entry-editor>The empty state component provides a styled screen to show the user when no content is available to be shown. As a reference for your decision when to use this screen take a look at the respective design guidline. The following parameters are available:
- header The header shown on the page
- message The messaage shown on the page
- icon The icon shown on the page. We recommend the
rocket_launchicon for screens that get active if the user does something and thebedtimeicon for screnns that are inactive if everything is in order. For more icons take a look here
<empty-state [header]="'Nothing to show'" [message]="'We can´t show you anything here.'" icon="bedtime"></empty-state>To start a local development server, run:
ng serveOnce the server is running, open your browser and navigate to http://localhost:4200/. The application will automatically reload whenever you modify any of the source files.
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
ng generate component component-nameFor a complete list of available schematics (such as components, directives, or pipes), run:
ng generate --helpTo build the project run:
ng buildThis will compile your project and store the build artifacts in the dist/ directory. By default, the production build optimizes your application for performance and speed.
To execute unit tests with the Vitest test runner, use the following command:
ng testFor more information on using the Angular CLI, including detailed command references, visit the Angular CLI Overview and Command Reference page.