
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
base-ui-components
Advanced tools
base Angewandte Component Library
This is a Vue 3 based component library developed by and used for projects of the base Angewandte, a collection of applications for the staff and students at the University of Applied Arts Vienna.
Install via:
npm i base-ui-components
and import and use the desired component(s) in your vue file(s):
Component.vue
<script setup>
import { BaseButton } from 'base-ui-components';
</script>
<template>
<BaseButton
text="Click me!" />
</template>
All available components, their usage and demos can be found in our styleguide.
The code base is available at GitHub.
App color and certain other styles can be customized via css variables. In order to do so you can add the following variables to your main css/scss file:
:root {
--app-color: #FF9800;
--app-color-secondary: #b085f5;
--font-color: rgb(0, 0, 0);
--font-color-second: rgb(107, 107, 107);
--button-header-color: rgb(240, 240, 240);
--keyboard-active-color: rgb(217, 217, 217);
--input-field-color: rgb(200, 200, 200);
--background-color: #f0f0f0;
--box-color: #ffffff;
--uploadbar-color: #999999;
--switch-checked-color: #4d4d4d;
--switch-svg-checked-color: #ffffff;
--graytext-color: rgba(16, 16, 16, 0.3);
--warning-color: #ff4444;
--pagination-bullet-color: #444444;
--base-tooltip-box-threshold-top: 0;
--header-height: 55px;
}
Then in your main.js file import your styles before the base-ui-components file. E.g.:
import './styles/app.scss';
import 'base-ui-components/base-ui-components.css';
Additionally, base-ui-components export the following composables for re-use:
aria-live attribute set to assertiveclass) and attributes that should be forwarded to a childSee LICENSE
This open-source project was developed (and more specifically - cross-browser tested) with the support of:
FAQs
base Angewandte Component Library
The npm package base-ui-components receives a total of 132 weekly downloads. As such, base-ui-components popularity was classified as not popular.
We found that base-ui-components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.