
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
@boxyhq/vue2-ui
Advanced tools
UI components from BoxyHQ for plug-and-play enterprise features.
npm install @boxyhq/vue2-ui --save
There are mainly 2 ways of using the SSO Login Component as outlined below:
ssoIdentifierIf a value is passed for ssoIdentifier, it would render a button that on click calls the passed-in handler (onSubmit) with the ssoIdentifier value. The handler can then initiate a redirect to the SSO service forwarding the value for ssoIdentifier.
<script setup>
import { Login } from '@boxyhq/vue2-ui/sso';
function onSSOSubmit({ ssoIdentifier, cb }) {
// initiate the SSO flow here
console.log(ssoIdentifier);
}
</script>
<template>
<Login
:onSubmit="onSSOSubmit"
:ssoIdentifier="`tenant=${tenant}&product=${product}`"
buttonText="Login with SSO"
:innerProps="{ input: { id: 'sso-input' }, label: { for: 'sso-input' } }" />
</template>
ssoIdentifierIf a value is not passed for ssoIdentifier, it would render an input field for the user to enter the ssoIdentifier value. And then on submit, the value gets passed to the handler. The handler can then initiate a redirect to the SSO service forwarding the value for ssoIdentifier.
<script setup>
import { Login } from '@boxyhq/vue-ui/sso';
import './CustomStyling.css';
function onSSOSubmit({ ssoIdentifier, cb }) {
// initiate the SSO flow here
console.log(ssoIdentifier);
}
</script>
<template>
<Login
:onSubmit="onSSOSubmit"
:styles="{
input: { borderColor: '#ebedf0' },
button: { padding: '.85rem' },
}"
:classNames="{ button: 'btn', input: 'inp' }"
placeholder="contoso@boxyhq.com"
inputLabel="Team Domain *"
buttonText="Login with SSO"
:innerProps="{ input: { type: 'email', id: 'sso-input' }, label: { for: 'sso-input' } }" />
</template>
If the classNames prop is passed in, we can override the default styling for each inner element. In case an inner element is omitted from the classNames prop, default styles will be set for the element. For example, In the below snippet, all the inner elements are styled by passing in the classNames for each inner one.
<Login
buttonText="Login with SSO"
:onSubmit="onSSOSubmit"
:classNames="{
container: 'mt-2',
label: 'text-gray-400',
button: 'btn-primary btn-block btn rounded-md active:-scale-95',
input: 'input-bordered input mb-5 mt-2 w-full rounded-md',
}" />
Styling via style attribute is also supported for each inner element.
FAQs
Vue 2 UI components from BoxyHQ
The npm package @boxyhq/vue2-ui receives a total of 3 weekly downloads. As such, @boxyhq/vue2-ui popularity was classified as not popular.
We found that @boxyhq/vue2-ui demonstrated a not healthy version release cadence and project activity because the last version was released 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.