Design philosophy
Last updated
Was this helpful?
Last updated
Was this helpful?
In valtimo-frontend-libraries major version 5, a new library was introduced: @valtimo/user-interface
. It aims to provide a set of components which will give Valtimo a clean and consistent look and feel. The initial set of components are based on .
Note: as of valtimo-front-end-libraries major version 10, the development and use of this library has been discontinued. For new features, the will be used.
All main design aspects - like color, typography, and spacing - are stored in CSS variables, which are then referenced in specific design tokens used by components.
All design tokens are specified in one file, and exported from @valtimo/user-interface
.
They are included by adding the following line to the styles
array in an implementation's angular.json
file:
node_modules/valtimo/user-interface/assets/design-tokens.css
;
Implementation developers can later add their own sheets with tokens after this import, in order to override values, for example to customize an implementation's accent colors.
All design tokens are prefixed with --v-*
.
All spacing and sizing is done through the use of pixel values. Margins and padding are added with the block
and inline
syntax. So for example, margin-inline-start
as opposed to margin-left
.
All main design aspects are defined at the top of `design-tokens.css. For example, this line defines the main accent color:
New design aspects are always added at the top of the file, with the main tokens, and are appropriately categorized using CSS comments.
Subsequently, specific tokens are specified for each component, which reference these main design aspects:
In this way, the design remains consistent, and it offers implementation developers the choice to either override a main design aspect in all components (for example, changing an accent color), or to override a specific property of a specific component.
Stylesheets of components refer to component tokens only, never to main tokens, like so:
button.component.scss
All components using this new design are exported from the library @valtimo/user-interface
with their own module. In this way, components are only imported into other modules as needed.
Components using the new design are prefixed with v-*
, for example v-paragraph
.
As a way to reuse code as much as possible, the appearance of features of a component may be altered through the use of component inputs. If a new feature or look is required, make sure to determine if this is best added to an existing component and enabled through the use of inputs.
By default, margins external to the component - for example, the margin below a title element - are optional and can be turned off. In this way, spacing is flexible and may be customized to satisfy specific needs.
Taking all the above guidelines into account, view the reference code below with comments, to see how it all comes together.
paragraph.component.html
paragraph.component.ts
paragraph.component.scss
The component is then exported separately from its own module, so that it can be used on its own in other modules.
paragraph.module.ts
Components are made from scratch, and as much as possible, without the help of third party components. Their HTML structure is to conform to the BEM naming convention. For a guide on how to use BEM, refer to .