A Vue 3 component library built with Vite and Vuetify.
Baran Component is a collection of reusable Vue 3 components, styled with Vuetify, and optimized for performance using Vite. This library aims to provide a set of commonly used components to speed up the development process of your Vue.js applications.
Before you can use this project, make sure you have the following prerequisites installed:
Set up your project using NPM. Use the corresponding command to install the dependencies:
Package Manager |
Command |
npm |
npm install baran-component |
After successfully installing dependencies, register component globally.
import vuetify from './vuetify' import BaranComponent from 'baran-component'
import 'baran-component/dist/style.css'
export function registerPlugins (app) {
app.use(vuetify) app.use(BaranComponent)
}
The BaranButton
component is a customizable button with various props and events. Extended from Vuetify.
Prop |
Type |
Default |
Description |
color |
String |
primary |
The color of the button (e.g., primary , secondary ). |
disabled |
Boolean |
false |
Whether the button is disabled. |
variant |
String |
'' |
The variant of the button (outlined , tonal , text , plain ). |
icon |
String |
'' |
The icon for a single icon button, using MDI icons. |
prependIcon |
String |
'' |
The icon to prepend to the button text, using MDI icons. |
appendIcon |
String |
'' |
The icon to append to the button text, using MDI icons. |
density |
String |
'' |
The density of the button ('default', comfortable , compact ). |
size |
String |
medium |
The size of the button (x-small , small , medium , large , x-large ). |
block |
Boolean |
false |
Whether the button should take the full width of its container. |
rounded |
String |
0 |
The border radius of the button (e.g., 0 , xs , sm , md , lg , xl ). |
elevation |
Number |
2 |
The elevation (shadow) level of the button. |
ripple |
Boolean |
true |
Whether the button has a ripple effect when clicked. |
loading |
Boolean |
false |
Whether the button shows a loading indicator. |
width |
String |
'' |
The width of the button. |
maxWidth |
String |
'' |
The maximum width of the button. |
minWidth |
String |
'' |
The minimum width of the button. |
height |
String |
'' |
The height of the button. |
maxHeight |
String |
'' |
The maximum height of the button. |
minHeight |
String |
'' |
The minimum height of the button. |
Slot Name |
Description |
prepend |
Slot for custom prepend content. |
`` |
|
append |
Slot for custom append content. |
loader |
Slot for custom loader content. |
Event |
Description |
@click |
Event emitted when the button is clicked |
<template>
<BaranButton @click="onClick" elevation="4" color="#1814F3" class="mt-1" :disabled="!terms"> Add Card </BaranButton>
</template>
<script setup>
import { ref } from 'vue'
const terms = ref(false)
function onClick() {
alert('Button clicked!');
},
</script>
The BaranCard
component is a versatile card component with a customizable button. It is built using Vuetify's card and button components and offers various customization options for appearance and behavior.
Prop |
Type |
Default |
Description |
text |
String |
'' |
The main text content of the card. |
buttonText |
String |
Click |
The text displayed on the button. |
buttonBackground |
String |
#7367f0 |
The background color of the button. |
buttonColor |
String |
#fff |
The text color of the button. |
showButton |
Boolean |
false |
Whether to show the button. |
title |
String |
'' |
The title of the card. |
target |
String |
'' |
The target attribute for the link, if href is provided. |
subtitle |
String |
'' |
The subtitle of the card. |
variant |
String |
'' |
The variant of the card (outlined , tonal , elevated , flat , text , plain ). |
loading |
Boolean |
false |
Whether the card shows a loading state. |
hover |
Boolean |
false |
Whether the card has a hover effect. |
href |
String |
'' |
The link URL for the card. |
rounded |
String |
xs |
The border radius of the card (e.g., xs , sm , md , lg , xl ). |
elevation |
Number |
1 |
The elevation (shadow) level of the card. |
image |
String |
'' |
The image URL for the card. |
color |
String |
'' |
The color of the card. |
disabled |
Boolean |
false |
Whether the card is disabled. |
prependIcon |
String |
'' |
The icon to prepend to the card content. |
appendIcon |
String |
'' |
The icon to append to the card content. |
density |
String |
'comfortable' |
The density of the card (comfortable , compact ). |
width |
String |
'' |
The width of the card. |
maxWidth |
String |
'' |
The maximum width of the card. |
minWidth |
String |
'' |
The minimum width of the card. |
height |
String |
'' |
The height of the card. |
maxHeight |
String |
'' |
The maximum height of the card. |
minHeight |
String |
'' |
The minimum height of the card |
Slot Name |
Description |
prepend |
Slot for custom prepend content. |
`` |
|
append |
Slot for custom append content. |
actions |
Slot for actions loader content. |
Event |
Description |
@click |
Event emitted when the button is clicked. |
<template>
<BaranCard
title="Card Title"
subtitle="Card Subtitle"
text="This is some example text content for the card."
:show-button="true"
button-text="Learn More"
button-background="#ff5722"
button-color="#ffffff"
:hover="true"
:elevation="4"
href="https://example.com"
target="_blank"
class="my-custom-class"
:rounded="'md'"
>
<template #prepend>
<BaranAvatar size="56">
<img src="https://example.com/avatar.jpg" alt="Avatar" />
</BaranAvatar>
</template>
<template #append>
<v-icon>mdi-heart</v-icon>
</template>
</BaranCard>
</template>
<script setup></script>
The BaranChips
component represents a small interactive element used to represent information such as tags, categories, or actions.
Prop |
Type |
Default |
Description |
title |
String |
'Chip' |
The text content displayed within the chip. |
color |
String |
'#7367f0' |
The background color of the chip. |
elevation |
Number |
0 |
Elevation level of the chip. |
size |
String |
'default' |
Size of the chip (small , default , large ). |
variant |
String |
'tonal' |
Visual variant of the chip (outlined , elevated , text , plain ). |
prependIcon |
String |
'' |
Icon to prepend before the chip text. |
appendIcon |
String |
'' |
Icon to append after the chip text. |
closable |
Boolean |
false |
If true, displays a close icon for removing the chip. |
label |
Boolean |
false |
If true, renders the chip as a label style. |
disabled |
Boolean |
false |
If true, disables interactions with the chip. |
density |
String |
'' |
Density of the chip (comfortable , compact ). |
Slot Name |
Description |
prepend |
Slot for custom prepend content. |
append |
Slot for custom append content. |
Event Name |
Description |
Payload |
click |
Triggered when the chip is clicked. |
MouseEvent |
<template>
<BaranChips title="Example Chip" color="#ff9800" elevation="2" size="default" variant="outlined" prependIcon="mdi-check" appendIcon="mdi-close" closable label disabled class="custom-chip" density="compact" @click="handleChipClick">
<template #prepend>
<v-icon>mdi-tag</v-icon>
</template>
</BaranChips>
</template>
<script setup>
import Chip from "baran-component/Chip.vue";
const handleChipClick = (event) => {
console.log("Chip clicked!", event);
};
</script>
<style>
.custom-chip {
font-size: 14px;
}
</style>
Expansion Panels Component
The BaranExpansionPanels
component allows for displaying collapsible panels with customizable options.
Prop |
Type |
Default |
Description |
bg-color |
String |
undefined |
Restricted |
collapse-icon |
Any |
'$collapse' |
Icon used when the expansion panel is in a collapsable state. |
color |
String |
undefined |
Applies specified color to the control - supports utility colors or CSS color values. |
disabled |
Boolean |
false |
Puts all children components into a disabled state. |
eager |
Boolean |
false |
Forces the component’s content to render when it mounts - useful for SEO. |
elevation |
String | Number |
undefined |
Designates an elevation applied to the component between 0 and 24. |
expand-icon |
Any |
'$expand' |
Icon used when the expansion panel is in an expandable state. |
flat |
Boolean |
false |
Removes the expansion-panel’s elevation and borders. |
focusable |
Boolean |
false |
Makes the expansion-panel headers focusable. |
hide-actions |
Boolean |
false |
Hide the expand icon in the content title. |
mandatory |
Boolean | 'force'
|
false |
Forces at least one item to always be selected (if available). |
max |
Number |
undefined |
Sets a maximum number of selections that can be made. |
model-value |
Any |
undefined |
The v-model value of the component - if component supports the multiple prop, this defaults to an array. |
multiple |
Boolean |
false |
Allows one to select multiple items. |
readonly |
Boolean |
false |
Makes the entire expansion-panel read only. |
ripple |
Boolean | { class: string } |
false |
Applies the v-ripple directive. |
rounded |
String | Number | Boolean |
undefined |
Designates the border-radius applied to the component - can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. |
selected-class |
String |
undefined |
Configure the active CSS class applied when an item is selected. |
static |
Boolean |
false |
Remove title size expansion when selected. |
tag |
String |
'div' |
Specify a custom tag used on the root element. |
theme |
String |
undefined |
Specify a theme for this component and all of its children. |
tile |
Boolean |
false |
Removes the border-radius. |
variant |
'default' | 'accordion' | 'inset' | 'popout'
|
'default' |
Applies a distinct style to the component. |
<template>
<BaranExpansionPanels variant="accordion" rounded="md" :elevation="3">
<BaranExpansionPanel>
<template v-slot:title> Title Slot </template>
<template v-slot:text> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </template>
</BaranExpansionPanel>
<BaranExpansionPanel title="Title" text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.">
</BaranExpansionPanel>
</BaranExpansionPanels>
</template>
<script setup></script>
<style></style>
Expansion Panel Component
The BaranExpansionPanel
is sub-component used to display a single expansion panel item.
Prop |
Type |
Default |
Description |
bg-color |
String |
undefined |
Applies specified color to the control’s background - supports utility colors or CSS color values. |
collapse-icon |
Any |
'$collapse' |
Icon used when the expansion panel is in a collapsable state. |
color |
String |
undefined |
Applies specified color to the control - supports utility colors or CSS color values. |
disabled |
Boolean |
false |
Disables the expansion-panel content. |
eager |
Boolean |
false |
Forces the component’s content to render when it mounts - useful for SEO. |
elevation |
String | Number |
undefined |
Designates an elevation applied to the component between 0 and 24. |
expand-icon |
Any |
'$expand' |
Icon used when the expansion panel is in an expandable state. |
focusable |
Boolean |
false |
MISSING DESCRIPTION (edit in github). |
hide-actions |
Boolean |
false |
Hide the expand icon in the content title. |
readonly |
Boolean |
false |
Makes the expansion-panel content read only. |
ripple |
Boolean | { class: string } |
false |
Applies the v-ripple directive. |
rounded |
String | Number | Boolean |
undefined |
Designates the border-radius applied to the component - can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. |
selected-class |
String |
undefined |
Configure the active CSS class applied when an item is selected. |
static |
Boolean |
false |
Remove title size expansion when selected. |
tag |
String |
'div' |
Specify a custom tag used on the root element. |
text |
String |
undefined |
Specify content text for the component. |
tile |
Boolean |
false |
Removes any applied border-radius from the component. |
title |
String |
undefined |
Specify a title text for the component. |
value |
Any |
undefined |
Controls the opened/closed state of content. |
Slot Name |
Description |
default |
The default Vue slot. |
title |
Slot for title. |
text |
Slot for text. |
<template>
<BaranExpansionPanels variant="accordion" rounded="md" :elevation="3">
<BaranExpansionPanel>
<template v-slot:title> Title Slot </template>
<template v-slot:text> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </template>
</BaranExpansionPanel>
<BaranExpansionPanel title="Title" text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.">
</BaranExpansionPanel>
</BaranExpansionPanels>
</template>
<script setup></script>
<style></style>
The BaranDialog
component provides a dialog with an activator slot for flexibility in triggering the dialog.
Prop |
Type |
Default |
Description |
title |
String |
'Title' |
Title of the dialog. |
text |
String |
'Lorem ipsum...' |
Text content displayed within the dialog. |
closeButtonText |
String |
'Close' |
Text for the close button inside the dialog. |
rounded |
String |
'xs' |
Rounded corner size of the dialog. |
buttonText |
String |
'Open Modal' |
Text displayed on the activator button triggering the dialog. |
buttonColor |
String |
'#7367f0' |
Color of the activator button. |
buttonElevation |
Number |
2 |
Elevation level of the activator button. |
persistent |
Boolean |
false |
Whether the dialog persists after being closed. |
transition |
String |
'' |
Transition name for dialog animation. |
scrollable |
Boolean |
false |
Whether the dialog content is scrollable. |
fullscreen |
Boolean |
false |
Whether the dialog should occupy the full screen. |
width |
String |
'' |
Width of the dialog. |
maxWidth |
String |
'' |
Maximum width of the dialog. |
minWidth |
String |
'' |
Minimum width of the dialog. |
height |
String |
'' |
Height of the dialog. |
maxHeight |
String |
'' |
Maximum height of the dialog. |
minHeight |
String |
'' |
Minimum height of the dialog. |
buttonVariant |
String |
'' |
Variant style of the activator button. |
buttonDisabled |
Boolean |
false |
Whether the activator button is disabled. |
buttonDensity |
String |
'comfortable' |
Density of the activator button. |
buttonClass |
String |
'' |
Custom CSS classes for the activator button. |
buttonSize |
String |
'default' |
Size of the activator button. |
buttonBlock |
Boolean |
false |
Whether the activator button spans full width. |
buttonRounded |
String |
'xs' |
Rounded corner size of the activator button. |
buttonLoading |
Boolean |
false |
Whether the activator button is in a loading state. |
buttonWidth |
String |
'' |
Width of the activator button. |
buttonMaxWidth |
String |
'' |
Maximum width of the activator button. |
buttonMinWidth |
String |
'' |
Minimum width of the activator button. |
buttonHeight |
String |
'' |
Height of the activator button. |
buttonMaxHeight |
String |
'' |
Maximum height of the activator button. |
buttonMinHeight |
String |
'' |
Minimum height of the activator button. |
Slot Name |
Description |
activator |
Slot for replacing the default activator button. Provides props (activatorProps ) to customize the activator button. |
default |
Slot for customizing the content inside the dialog. Receives the isActive prop indicating whether the dialog is currently active. |
<template>
<BaranDialog width="auto" scrollable :title="dialogTitle" :text="dialogText">
<template v-slot:activator="{ props: activatorProps }">
<BaranButton color="brown" prepend-icon="mdi-earth" text="Custom Modal Activator" variant="outlined" v-bind="activatorProps"></BaranButton>
</template>
</BaranDialog>
</template>
<script setup>
const dialogTitle = "Example Dialog";
const dialogText = "This is an example of a dialog component with custom slots and props.";
</script>
The BaranList
component renders a list of items with optional sub-groups, allowing customization of each list item.
Prop |
Type |
Default |
Description |
activatable |
Boolean |
false |
MISSING DESCRIPTION (edit in github). |
activated |
Any |
undefined |
Array of ids of activated nodes. |
active-class |
String |
undefined |
The class applied to the component when it is in an active state. |
active-color |
String |
undefined |
The applied color when the component is in an active state. |
base-color |
String |
undefined |
Sets the color of component when not focused. |
bg-color |
String |
undefined |
Applies specified color to the control’s background - supports utility colors or CSS color values. |
border |
String | Number | Boolean |
false |
Designates the border-radius applied to the component - can be xs, sm, md, lg, xl. |
collapse-icon |
String |
undefined |
MISSING DESCRIPTION (edit in github). |
color |
String |
undefined |
Applies specified color to the control - supports utility colors or CSS color values. |
density |
'default' | 'comfortable' | 'compact'
|
'comfortable' |
Adjusts the vertical height used by the component. |
disabled |
Boolean |
false |
Puts all children inputs into a disabled state. |
elevation |
String | Number |
undefined |
Designates an elevation applied to the component between 0 and 24. |
expand-icon |
String |
undefined |
MISSING DESCRIPTION (edit in github). |
height |
String | Number |
undefined |
Sets the height for the component. |
item-children |
SelectItemKey<any> |
'children' |
Property on supplied items that contains its children. |
item-props |
SelectItemKey<any> |
'props' |
Props object that will be applied to each item component. |
items |
Any[] |
[] |
Can be an array of objects or strings. |
item-title |
SelectItemKey<any> |
'title' |
Property on supplied items that contains its title. |
item-type |
String |
'type' |
Designates the key on the supplied items that is used for determining the nodes type. |
item-value |
SelectItemKey<any> |
'value' |
Property on supplied items that contains its value. |
lines |
Boolean | 'one' | 'two' | 'three'
|
'one' |
Designates a minimum-height for all children v-list-item components. |
mandatory |
Boolean |
false |
Forces at least one item to always be selected (if available). |
max-height |
String | Number |
undefined |
Sets the maximum height for the component. |
max-width |
String | Number |
undefined |
Sets the maximum width for the component. |
min-height |
String | Number |
undefined |
Sets the minimum height for the component. |
min-width |
String | Number |
undefined |
Sets the minimum width for the component. |
nav |
Boolean |
false |
An alternative styling that reduces v-list-item width and rounds the corners. |
opened |
Unknown |
undefined |
An array containing the values of currently opened groups. |
open-strategy |
'single' | 'multiple' | 'list' | OpenStrategy |
'list' |
Affects how items with children behave when expanded. |
return-object |
Boolean |
false |
Changes the selection behavior to return the object directly rather than the value specified with item-value. |
rounded |
String | Number | Boolean |
undefined |
Designates the border-radius applied to the component - can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. |
selectable |
Boolean |
false |
MISSING DESCRIPTION (edit in github). |
selected |
Unknown |
undefined |
An array containing the values of currently selected items. |
slim |
Boolean |
false |
Reduces horizontal spacing for badges, icons, tooltips, and avatars within slim list items. |
tag |
String |
'div' |
Specify a custom tag used on the root element. |
theme |
String |
undefined |
Specify a theme for this component and all of its children. |
tile |
Boolean |
false |
Removes any applied border-radius from the component. |
value-comparator |
(a: any, b: any) => Boolean |
undefined |
Apply a custom comparison algorithm to compare model-value and values contains in the items prop. |
variant |
'flat' | 'elevated' | 'tonal' | 'outlined' | 'text' | 'plain'
|
'text' |
Applies a distinct style to the component. |
width |
String | Number |
undefined |
Sets the width for the component. |
Slot Name |
Description |
default |
The default Vue slot. |
<template>
<BaranList :items="items"></BaranList>
</template>
<script setup>
const items = [
{ type: "subheader", title: "Group #1" },
{
title: "Item #1",
value: 1,
},
{
title: "Item #2",
value: 2,
},
{
title: "Item #3",
value: 3,
},
{ type: "divider" },
{ type: "subheader", title: "Group #2" },
{
title: "Item #4",
value: 4,
},
{
title: "Item #5",
value: 5,
},
{
title: "Item #6",
value: 6,
},
];
</script>
The BaranListItem
is sub-component used to display a single list item.
Prop |
Type |
Default |
Description |
activatable |
Boolean |
false |
MISSING DESCRIPTION (edit in github). |
activated |
Any |
undefined |
Array of ids of activated nodes. |
active-class |
String |
undefined |
The class applied to the component when it is in an active state. |
active-color |
String |
undefined |
The applied color when the component is in an active state. |
base-color |
String |
undefined |
Sets the color of component when not focused. |
bg-color |
String |
undefined |
Applies specified color to the control’s background - supports utility colors or CSS color values. |
border |
String | Number | Boolean |
false |
Designates the border-radius applied to the component - can be xs, sm, md, lg, xl. |
collapse-icon |
String |
undefined |
MISSING DESCRIPTION (edit in github). |
color |
String |
undefined |
Applies specified color to the control - supports utility colors or CSS color values. |
density |
'default' | 'comfortable' | 'compact'
|
'comfortable' |
Adjusts the vertical height used by the component. |
disabled |
Boolean |
false |
Puts all children inputs into a disabled state. |
elevation |
String | Number |
undefined |
Designates an elevation applied to the component between 0 and 24. |
expand-icon |
String |
undefined |
MISSING DESCRIPTION (edit in github). |
height |
String | Number |
undefined |
Sets the height for the component. |
item-children |
SelectItemKey<any> |
'children' |
Property on supplied items that contains its children. |
item-props |
SelectItemKey<any> |
'props' |
Props object that will be applied to each item component. |
items |
Any[] |
[] |
Can be an array of objects or strings. |
item-title |
SelectItemKey<any> |
'title' |
Property on supplied items that contains its title. |
item-type |
String |
'type' |
Designates the key on the supplied items that is used for determining the nodes type. |
item-value |
SelectItemKey<any> |
'value' |
Property on supplied items that contains its value. |
lines |
Boolean | 'one' | 'two' | 'three'
|
'one' |
Designates a minimum-height for all children v-list-item components. |
mandatory |
Boolean |
false |
Forces at least one item to always be selected (if available). |
max-height |
String | Number |
undefined |
Sets the maximum height for the component. |
max-width |
String | Number |
undefined |
Sets the maximum width for the component. |
min-height |
String | Number |
undefined |
Sets the minimum height for the component. |
min-width |
String | Number |
undefined |
Sets the minimum width for the component. |
nav |
Boolean |
false |
An alternative styling that reduces v-list-item width and rounds the corners. |
opened |
Unknown |
undefined |
An array containing the values of currently opened groups. |
open-strategy |
'single' | 'multiple' | 'list' | OpenStrategy |
'list' |
Affects how items with children behave when expanded. |
return-object |
Boolean |
false |
Changes the selection behavior to return the object directly rather than the value specified with item-value. |
rounded |
String | Number | Boolean |
undefined |
Designates the border-radius applied to the component - can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. |
selectable |
Boolean |
false |
MISSING DESCRIPTION (edit in github). |
selected |
Unknown |
undefined |
An array containing the values of currently selected items. |
slim |
Boolean |
false |
Reduces horizontal spacing for badges, icons, tooltips, and avatars within slim list items. |
tag |
String |
'div' |
Specify a custom tag used on the root element. |
theme |
String |
undefined |
Specify a theme for this component and all of its children. |
tile |
Boolean |
false |
Removes any applied border-radius from the component. |
value-comparator |
(a: any, b: any) => Boolean |
undefined |
Apply a custom comparison algorithm to compare model-value and values contains in the items prop. |
variant |
'flat' | 'elevated' | 'tonal' | 'outlined' | 'text' | 'plain'
|
'text' |
Applies a distinct style to the component. |
width |
String | Number |
undefined |
Sets the width for the component. |
Slot Name |
Description |
`` |
The default Vue slot. |
prepend |
Slot for customizing the prepend icon. |
append |
Slot for customizing the append icon. |
title |
Slot for customizing the title. |
subtitle |
Slot for customizing the subtitle. |
<template>
<BaranList>
<BaranListItem v-for="(item, i) in items" :key="i" :value="item" color="primary" rounded="xl">
<template v-slot:prepend>
<v-icon :icon="item.icon"></v-icon>
</template>
<template v-slot:title>
{{ item.text }}
</template>
<template v-slot:subtitle>
{{ item.text }}
</template>
</BaranListItem>
</BaranList>
</template>
<script setup>
const items = [
{ text: "Real-Time", icon: "mdi-clock" },
{ text: "Audience", icon: "mdi-account" },
{ text: "Conversions", icon: "mdi-flag" },
];
</script>
The BaranTabs
component is a customizable tab component with support for icons, dynamic tab content, and various styling options. It allows for flexible props, slots, and a simple API to manage the tabs.
Prop |
Type |
Default |
Description |
items |
Array |
[{ id: 1, tabText: "1st Tab", tabContent: "Content for 1st Tab" }, { id: 2, tabText: "2nd Tab", tabContent: "Content for 2nd Tab", icon: "$vuetify" }] |
Array of tab items, each containing an id , tabText , tabContent , and optionally an icon . |
bgColor |
String |
#7367f0 |
Background color for the tab component. |
alignTabs |
String |
start |
Alignment of the tabs (start, center, end). |
rounded |
String |
xs |
Border radius for the tab component (xs, sm, md, lg, xl). |
elevation |
Number |
2 |
Elevation for the tab component (range from 0 to 24). |
density |
String |
comfortable |
Density of the tabs (comfortable, compact). |
disabled |
Boolean |
false |
Whether the tabs are disabled. |
width |
String |
undefined |
The width of the tabs wrapper. |
maxWidth |
String |
undefined |
The maximum width of the tabs wrapper. |
minWidth |
String |
undefined |
The minimum width of the tabs wrapper. |
height |
String |
undefined |
The height of the tabs wrapper. |
maxHeight |
String |
undefined |
The maximum height of the tabs wrapper. |
minHeight |
String |
undefined |
The minimum height of the tabs wrapper. |
Slot Name |
Description |
tab-{id} |
Slot for customizing the tab with the specific id . Receives item as a scoped slot prop. |
tabContent-{id} |
Slot for customizing the tab content with the specific id . Receives item as a scoped slot prop. |
<template>
<BaranTabs :items="tabs" bgColor="#4caf50" alignTabs="center" rounded="md" elevation="4" density="compact">
<template #tab-1="{ item }">
<span>Custom Tab Content for {{ item.tabText }}</span>
</template>
<template #tabContent-1="{ item }">
<div>Custom Content for {{ item.tabContent }}</div>
</template>
</BaranTabs>
</template>
<script setup>
import { ref } from "vue";
const tabs = ref([
{ id: 1, tabText: "1st Tab", tabContent: "Content for 1st Tab" },
{ id: 2, tabText: "2nd Tab", tabContent: "Content for 2nd Tab", icon: "$vuetify" },
]);
</script>
The BaranSpeedDial
component provides a customizable speed dial menu with various items. Extended from Vuetify.
Prop |
Type |
Default |
Description |
items |
Array |
See Example |
An array of objects, each representing an item in the speed dial menu. |
position |
Array |
['bottom', 'center'] |
The position of the speed dial menu (horizontal and vertical alignment). |
icon |
String |
'mdi-translate' |
The icon for the speed dial activator button. |
color |
String |
'#7367f0' |
The color of the speed dial activator button. |
variant |
String |
'tonal' |
The variant style of the activator button. |
density |
String |
'comfortable' |
The density of the activator button. |
Slot Name |
Description |
activator |
Slot for customizing the activator button. |
The BaranSpeedDial
component emits a 'click' event when any item in the speed dial menu is clicked. The clicked item object is passed as the event payload.
<template>
<BaranSpeedDial :items="speedDialItems" :position="['bottom', 'center']" icon="mdi-plus" color="#42b983" @click="handleSpeedDialClick">
<template v-slot:activator="{ props }">
<!-- Custom activator button -->
<v-btn v-bind="{ ...props, color: 'secondary', dark: true }"> Custom Activator </v-btn>
</template>
</BaranSpeedDial>
</template>
<script setup>
import { ref } from "vue";
import BaranSpeedDial from "./components/BaranSpeedDial.vue";
const speedDialItems = ref([
{
icon: "mdi-pencil",
variant: "tonal",
color: "#7367f0",
onClick: () => console.log("Edit clicked"),
},
{
icon: "mdi-delete",
variant: "tonal",
color: "#f04e54",
onClick: () => console.log("Delete clicked"),
},
]);
const handleSpeedDialClick = (item) => {
console.log("Clicked item:", item);
};
</script>
The BaranTextbox
component is a customizable text field component with various props, computed properties, and reactive data bindings. This component leverages Vuetify's v-text-field
and offers additional flexibility through props and slots.
Prop |
Type |
Default |
Description |
label |
String |
'Text' |
The label of the text field. |
value |
[String, Number] |
'' |
The value of the text field. |
variant |
String |
'outlined' |
The variant of the text field (e.g., outlined, underlined, solo, etc.). |
density |
String |
'compact' |
The density of the text field (e.g., comfortable, compact). |
prependIcon |
String |
'' |
The icon to prepend to the text field. |
appendIcon |
String |
'' |
The icon to append to the text field. |
appendInnerIcon |
String |
'' |
The inner icon to append to the text field. |
clearable |
Boolean |
false |
Whether the text field is clearable. |
type |
String |
'text' |
The type of the input (e.g., text, password, email). |
placeholder |
String |
'Type something' |
The placeholder text. |
hint |
String |
'' |
Hint text to display. |
persistentHint |
Boolean |
false |
Whether the hint text should always be visible. |
disabled |
Boolean |
false |
Whether the text field is disabled. |
readonly |
Boolean |
false |
Whether the text field is read-only. |
rules |
Array |
[] |
Array of validation rules. |
prefix |
String |
'' |
Prefix text to display inside the text field. |
suffix |
String |
'' |
Suffix text to display inside the text field. |
maxlength |
[String, Number] |
'' |
Maximum length of the input. |
counter |
Boolean |
false |
Whether to display the character counter. |
singleLine |
Boolean |
false |
Whether the text field is single-line. |
money |
Object |
{} |
Input mask rules. |
moneyCurrency |
String |
'' |
Pre-defined input mask rules for money currencies. EUR , TRY , USD , GBP
|
customMoneyCurrency |
Boolean |
false |
Whether the use pre-defined input mask or custom input mask. |
Slot Name |
Description |
prepend-inner |
Slot for customizing the inner prepend-inner icon. |
prepend |
Slot for customizing the prepend icon. |
append |
Slot for customizing the appended icon. |
append-inner |
Slot for customizing the inner appended-inner icon. |
details |
Slot for customizing the details. Used for displaying messages, hint, error-messages, and more. |
label |
Slot for customizing the label. |
<template>
<BaranTextbox v-model="inputValue" label="Enter your name" variant="underlined" prependIcon="mdi-account" appendIcon="mdi-check" appendInnerIcon="mdi-information" clearable :rules="[(v) => !!v || 'Name is required']" hint="Enter your full name" persistentHint counter maxlength="50">
<template #prepend-inner>
<v-icon>mdi-account</v-icon>
</template>
<template #append>
<v-icon>mdi-check</v-icon>
</template>
<template #append-inner>
<v-icon>mdi-information</v-icon>
</template>
</BaranTextbox>
<!-- Pre-defined input mask -->
<BaranTextbox moneyCurrency="EUR"></BaranTextbox>
<!-- Custom input mask -->
<BaranTextbox :money="jpyMask" :customMoneyCurrency="true"></BaranTextbox>
</template>
<script setup>
import { ref } from "vue";
const inputValue = ref("");
const jpyMask = ref({
decimal: "",
thousands: ",",
prefix: "¥ ",
suffix: " ",
precision: 0,
masked: false,
});
</script>
The BaranCombobox
component provides a customizable combobox interface for selecting items with various configurations.
Prop |
Type |
Default |
Description |
items |
Array |
['Item 1', 'Item 2', 'Item 3'] |
Array of items to display in the combobox. |
label |
String |
'Select' |
Label displayed above the combobox. |
placeholder |
String |
'Select an item' |
Placeholder text displayed when no item is selected. |
density |
String |
'compact' |
Density of the combobox ('comfortable' or 'compact'). |
multiple |
Boolean |
false |
Whether multiple items can be selected. |
chips |
Boolean |
false |
Whether to use chips for selected items display. |
readonly |
Boolean |
false |
Whether the combobox is in readonly mode. |
hint |
String |
'' |
Hint text displayed below the combobox. |
hideSelected |
Boolean |
false |
Whether to hide the selected item(s) from the dropdown list. |
variant |
String |
'outlined' |
Variant style of the combobox ('outlined', 'underlined', 'solo', 'solo-filled', 'solo-inverted'). |
persistentHint |
Boolean |
false |
Whether the hint text is persistent (visible when the combobox is focused). |
hideNoData |
Boolean |
true |
Whether to show a message when no matching items are found. |
Slot Name |
Description |
no-data |
Slot for custom no-data content. Make sure hide-no-data props is false |
<template>
<BaranCombobox
:items="['Apple', 'Banana', 'Orange', 'Grapes']"
label="Select Fruit"
placeholder="Choose a fruit"
:density="'compact'"
:multiple="true"
:chips="true"
:readonly="false"
hint="Select multiple fruits"
:hideSelected="false"
variant="outlined"
class="custom-combobox"
:persistentHint="true"
></BaranCombobox>
</template>
<script setup>
import BaranCombobox from "baran-component/BaranCombobox.vue";
</script>
<style>
.custom-combobox {
border: 1px solid #ccc;
border-radius: 8px;
padding: 16px;
}
</style>
The BaranFileInput
component allows users to upload files with customizable options.
Prop |
Type |
Default |
Description |
rules |
Array |
[] |
Validation rules for file input (array of validation functions). |
accept |
String |
'' |
File types accepted by the input (comma-separated MIME types). |
variant |
String |
'outlined' |
Variant style of the input (outlined, underlined, solo, solo-filled, solo-inverted). |
clearable |
Boolean |
false |
Whether the input can be cleared. |
chips |
Boolean |
false |
Whether to use chips for selected files. |
multiple |
Boolean |
false |
Whether multiple files can be selected. |
prependInnerIcon |
String |
'' |
Icon prepended inside the input. |
label |
String |
'File' |
Label text for the input. |
appendInnerIcon |
String |
'mdi-attachment' |
Icon appended inside the input. |
loading |
Boolean |
false |
Whether the input is in loading state. |
color |
String |
'' |
Color of the input. |
disabled |
Boolean |
false |
Whether the input is disabled. |
prependIcon |
String |
'' |
Icon prepended outside the input. |
appendIcon |
String |
'' |
Icon appended outside the input. |
density |
String |
'compact' |
Density of the input (comfortable or compact). |
rounded |
String |
'xs' |
Rounded corner size of the input. |
readonly |
Boolean |
false |
Whether the input is readonly. |
persistentHint |
Boolean |
false |
Whether to show hint persistently. |
hint |
String |
'' |
Hint text for the input. |
counter |
Boolean |
false |
Whether to show file counter. |
showSize |
Boolean |
false |
Whether to show file size. |
<template>
<BaranFileInput
:rules="fileRules"
accept=".jpg,.png"
variant="outlined"
:clearable="true"
:chips="true"
:multiple="true"
prependIcon="mdi-file"
appendInnerIcon="mdi-cloud-upload"
class="custom-file-input"
density="compact"
rounded="sm"
:readonly="false"
:persistentHint="true"
hint="Select one or more files to upload."
:counter="true"
:showSize="true"
/>
</template>
<script setup>
import { ref } from "vue";
const fileRules = ref([
(file) => file.size < 1024 * 1024 * 2, // Max 2MB
(file) => ["image/jpeg", "image/png"].includes(file.type),
]);
</script>
<style>
.custom-file-input .v-input--outline {
border-color: var(--bordercolor);
}
.custom-file-input .v-input--outline.v-input--focused .v-input__control .v-input__slot::before {
color: var(--primary);
}
</style>
The BaranSelect
component provides a customizable select dropdown with various props and configurations.
Prop |
Type |
Default |
Description |
items |
Array |
See Example |
An array of items to populate the select options. |
label |
String |
'Select' |
The label displayed above the select dropdown. |
variant |
String |
'outlined' |
The variant of the select (outlined, underlined, solo, solo-filled, solo-inverted). |
clearable |
Boolean |
false |
Whether the select allows clearing the selected value. |
chips |
Boolean |
false |
Whether to use chips for multiple selections. |
multiple |
Boolean |
false |
Whether multiple items can be selected. |
prependInnerIcon |
String |
'' |
The icon to prepend inside the select input. |
appendInnerIcon |
String |
'' |
The icon to append inside the select input. |
loading |
Boolean |
false |
Whether the select is in a loading state. |
color |
String |
'' |
The color of the select. |
disabled |
Boolean |
false |
Whether the select is disabled. |
prependIcon |
String |
'' |
The icon to prepend to the select. |
appendIcon |
String |
'' |
The icon to append to the select. |
density |
String |
'compact' |
The density of the select ('comfortable', 'compact'). |
rounded |
String |
'xs' |
The border radius of the select. |
readonly |
Boolean |
false |
Whether the select is readonly. |
persistentHint |
Boolean |
false |
Whether the hint text is persistent. |
returnObject |
Boolean |
false |
Whether to return selected items as objects instead of values. |
singleLine |
Boolean |
false |
Whether to display the select as a single line. |
hint |
String |
'' |
Hint text displayed below the select. |
itemTitle |
String |
'' |
The property name for the title of items in the select dropdown. |
itemValue |
String |
'' |
The property name for the value of items in the select dropdown. |
<template>
<BaranSelect :items="selectItems" label="Choose an option" variant="outlined" :clearable="true" :chips="false" :multiple="false" color="#42b983" prepend-icon="mdi-format-list-checks" append-icon="mdi-chevron-down" class="mt-4" />
</template>
<script setup>
import { ref } from "vue";
const selectItems = ref(["Option 1", "Option 2", "Option 3"]);
</script>
The BaranNumberInput
component integrates the Vuetify VNumberInput to provide a customizable number input field.
Prop |
Type |
Default |
Description |
controlVariant |
String |
'stacked' |
The variant of the control (stacked, standard, enclosed). |
rounded |
String |
'xs' |
The rounded corners size of the input (xs, sm, md, lg). |
label |
String |
'Number' |
The label of the number input field. |
variant |
String |
'outlined' |
The variant style of the input (outlined, filled, solo, solo-inverted, solo-full). |
loading |
Boolean |
false |
Whether the number input is in loading state. |
color |
String |
'' |
The color of the input. |
disabled |
Boolean |
false |
Whether the number input is disabled. |
prependIcon |
String |
'' |
The icon to prepend to the input field. |
appendIcon |
String |
'' |
The icon to append to the input field. |
density |
String |
'compact' |
The density of the input (comfortable, compact). |
hideInput |
Boolean |
false |
Whether to hide the input field. |
inset |
Boolean |
false |
Whether the input is inset. |
reverse |
Boolean |
false |
Whether to reverse the input layout. |
min |
Number |
undefined |
The minimum value allowed in the input. |
max |
Number |
undefined |
The maximum value allowed in the input. |
step |
Number |
undefined |
The step value for incrementing/decrementing the input value. |
<template>
<BaranNumberInput
control-variant="stacked"
rounded="md"
label="Quantity"
variant="filled"
:loading="false"
color="#42b983"
:disabled="false"
prepend-icon="mdi-minus"
append-icon="mdi-plus"
class="custom-number-input"
density="comfortable"
:hide-input="false"
:inset="false"
:reverse="false"
:min="0"
:max="10"
:step="1"
/>
</template>
<script setup></script>
The BaranOTPInput
component provides an input field for entering OTP (One-Time Password) codes with customizable configurations.
Prop |
Type |
Default |
Description |
length |
Number |
6 |
The length of the OTP input. |
variant |
String |
'outlined' |
The variant style of the input (solo, solo-filled, underlined). |
backgroundColor |
String |
'' |
The background color of the OTP input. |
disabled |
Boolean |
false |
Whether the OTP input is disabled. |
loading |
Boolean |
false |
Whether the OTP input is in loading state. |
focusAll |
Boolean |
false |
Whether to focus all OTP input fields. |
placeholder |
String |
'-' |
The placeholder text for the OTP input fields. |
divider |
String |
'' |
Divider character between OTP input fields. |
width |
String |
'' |
The width of the OTP input. |
maxWidth |
String |
'' |
The maximum width of the OTP input. |
minWidth |
String |
'' |
The minimum width of the OTP input. |
height |
String |
'' |
The height of the OTP input. |
maxHeight |
String |
'' |
The maximum height of the OTP input. |
minHeight |
String |
'' |
The minimum height of the OTP input. |
The BaranOTPInput component does not emit any events directly.
<template>
<BaranOTPInput :length="6" variant="underlined" background-color="#42b983" :disabled="false" class="otp-input" :loading="false" :focus-all="false" placeholder="-" divider="•" width="100%" height="100%" />
</template>
<script setup></script>
The BaranCheckbox
component is a customizable checkbox with various props and events.
Prop |
Type |
Default |
Description |
label |
String |
Check me |
The label displayed next to the checkbox. |
checked |
Boolean |
false |
Whether the checkbox is checked. |
color |
String |
#7367f0 |
The color of the checkbox. |
disabled |
Boolean |
false |
Whether the checkbox is disabled. |
Event |
Description |
@update:checked |
Event emitted when the checked state changes. |
<template>
<BaranCheckbox v-model:checked="isChecked" label="Accept Terms" color="primary" :disabled="isDisabled" />
</template>
<script setup>
import { ref } from "vue";
import BaranCheckbox from "baran-component/BaranCheckbox.vue";
const isChecked = ref(false);
const isDisabled = ref(false);
</script>
The BaranSwitch
component is a customizable switch with various props and events. Extended from Vuetify.
Prop |
Type |
Default |
Description |
label |
String |
'Switch' |
The label text displayed next to the switch. |
indeterminate |
Boolean |
true |
Whether the switch is in an indeterminate state. |
disabled |
Boolean |
false |
Whether the switch is disabled. |
loading |
Boolean |
false |
Whether the switch is in a loading state. |
prependIcon |
String |
'' |
The icon to prepend to the switch. |
appendIcon |
String |
'' |
The icon to append to the switch. |
inset |
Boolean |
false |
Whether the switch is inset (positioned inside its container). |
color |
String |
'#7367f0' |
The color of the switch. |
falseValue |
String |
false |
The value of the switch when it's unchecked. |
trueValue |
String |
true |
The value of the switch when it's checked. |
Slot Name |
Description |
label |
Slot for custom label content. |
The BaranSwitch component does not emit any specific events directly.
<template>
<BaranSwitch v-model="switchValue" label="Enable Notifications" color="#42b983" class="mt-2" :disabled="isDisabled" />
<BaranSwitch v-model="switchValue" :disabled="isDisabled" :indeterminate="false">
<template v-slot:label>
Turn on the progress:
<v-progress-circular :indeterminate="switchValue" class="ms-2" size="24"></v-progress-circular>
</template>
</BaranSwitch>
</template>
<script setup>
import { ref } from "vue";
const switchValue = ref(false);
const isDisabled = ref(false);
</script>
The BaranRadioGroup
component allows selection from a group of radio buttons, with support for custom HTML labels and various configurations.
Prop |
Type |
Default |
Description |
append-icon |
Any |
undefined |
Creates a v-icon component after default content in the append slot. |
center-affix |
Boolean |
false |
Vertically align append and prepend in the center. |
color |
String |
undefined |
Applies specified color to the control - supports utility colors or CSS color values. |
defaults-target |
String |
undefined |
The target component to provide defaults values for. |
density |
'default' | 'comfortable' | 'compact'
|
'default' |
Adjusts the vertical height used by the component. |
direction |
'horizontal' | 'vertical'
|
'horizontal' |
Changes the direction of the input. |
disabled |
Boolean |
null |
Removes the ability to click or target the component. |
error |
Boolean |
false |
Puts the input in a manual error state. |
error-messages |
String | String[] |
[] |
Puts the input in an error state and passes through custom error messages. |
false-icon |
Any |
'$radioOff' |
The icon used when inactive. |
focused |
Boolean |
false |
Forces a focused state styling on the component. |
height |
String | Number |
'auto' |
Sets the height of the input. |
hide-details |
Boolean | 'auto'
|
false |
Hides hint and validation errors. |
hide-spin-buttons |
Boolean |
false |
Hides spin buttons on the input when type is set to number. |
hint |
String |
undefined |
Displays hint text below the input when focused. |
id |
String |
undefined |
Sets the DOM id on the component. |
inline |
Boolean |
false |
Displays radio buttons in row. |
label |
String |
undefined |
Sets the text of the v-label or v-field-label component. |
max-errors |
String | Number |
1 |
Control the maximum number of shown errors from validation. |
max-width |
String | Number |
undefined |
Sets the maximum width for the component. |
messages |
String | String[] |
[] |
Displays a list of messages or a single message if using a string. |
min-width |
String | Number |
undefined |
Sets the minimum width for the component. |
model-value |
Unknown |
undefined |
The v-model value of the component. If component supports the multiple prop, this defaults to an empty array. |
name |
String |
undefined |
Sets the component’s name attribute. |
persistent-hint |
Boolean |
false |
Forces hint to always be visible. |
prepend-icon |
Any |
undefined |
Prepends an icon to the component, uses the same syntax as v-icon. |
readonly |
Boolean |
null |
Puts input in readonly state. |
ripple |
Boolean | { class: string } |
true |
Applies the v-ripple directive. |
rules |
ValidationRule[] |
[] |
Accepts a mixed array of types function, boolean and string. |
theme |
String |
undefined |
Specify a theme for this component and all of its children. |
true-icon |
Any |
'$radioOn' |
The icon used when active. |
type |
String |
'radio' |
Provides the default type for children selection controls. |
validate-on |
'blur' | 'input' | 'submit' | 'blur lazy' | 'input lazy' | 'submit lazy' | 'lazy blur' | 'lazy input' | 'lazy submit' | 'lazy' |
undefined |
Change what type of event triggers validation to run. |
validation-value |
Any |
undefined |
The value used when applying validation rules. |
value-comparator |
(a: any, b: any) => Boolean |
undefined |
Apply a custom comparison algorithm to compare model-value and values contains in the items prop. |
width |
String | Number |
undefined |
Sets the width for the component. |
<template>
<BaranRadioGroup color="#42b983" :inline="true" v-model="radios">
<BaranRadio label="Radio Label" value="1"></BaranRadio>
<BaranRadio value="2">
<template v-slot:label>
<b>Custom HTML Label</b>
</template>
</BaranRadio>
</BaranRadioGroup>
</template>
<script setup>
import { ref } from "vue";
const radios = ref(null);
</script>
The BaranRadio
component is a simple radio button.
Prop |
Type |
Default |
Description |
base-color |
String |
undefined |
Sets the color of the input when it is not focused. |
color |
String |
undefined |
Applies specified color to the control - supports utility colors or CSS color values. |
defaults-target |
String |
undefined |
The target component to provide defaults values for. |
density |
'default' | 'comfortable' | 'compact'
|
'default' |
Adjusts the vertical height used by the component. |
disabled |
Boolean |
null |
Removes the ability to click or target the component. |
error |
Boolean |
false |
Puts the input in a manual error state. |
false-icon |
Any |
'$radioOff' |
The icon used when inactive. |
false-value |
Any |
undefined |
Sets value for falsy state. |
id |
String |
undefined |
Sets the DOM id on the component. |
inline |
Boolean |
false |
Puts children inputs into a row. |
label |
String |
undefined |
Sets the text of the v-label or v-field-label component. |
model-value |
Any |
undefined |
The v-model value of the component. If component supports the multiple prop, this defaults to an empty array. |
multiple |
Boolean |
null |
Changes select to multiple. Accepts array for value. |
name |
String |
undefined |
Sets the component’s name attribute. |
readonly |
Boolean |
null |
Puts input in readonly state. |
ripple |
Boolean | { class: string } |
true |
Applies the v-ripple directive. |
theme |
String |
undefined |
Specify a theme for this component and all of its children. |
true-icon |
Any |
'$radioOn' |
The icon used when active. |
true-value |
Any |
undefined |
Sets value for truthy state. |
type |
String |
undefined |
Provides the default type for children selection controls. |
value |
Any |
undefined |
The value used when the component is selected in a group. If not provided, a unique ID will be used. |
value-comparator |
(a: any, b: any) => Boolean |
undefined |
Apply a custom comparison algorithm to compare model-value and values contains in the items prop. |
Slot Name |
Description |
label |
Slot for customizing radio's label. |
<template>
<BaranRadioGroup color="#42b983" :inline="true" v-model="radios">
<BaranRadio label="Radio Label" value="1"></BaranRadio>
<BaranRadio value="2">
<template v-slot:label>
<b>Custom HTML Label</b>
</template>
</BaranRadio>
</BaranRadioGroup>
</template>
<script setup>
import { ref } from "vue";
const radios = ref(null);
</script>
The BaranColorPicker
component allows users to select colors with various configurations.
Prop |
Type |
Default |
Description |
disabled |
Boolean |
false |
Disables the color picker. |
showSwatches |
Boolean |
false |
Shows color swatches in the color picker. |
hideCanvas |
Boolean |
false |
Hides the color canvas in the color picker. |
hideInputs |
Boolean |
false |
Hides color value input fields in the color picker. |
elevation |
Number |
2 |
Elevation level of the color picker. |
swatchesMaxHeight |
Number |
0 |
Maximum height of the color swatches. If set to 0, height is auto-calculated based on swatch size. |
width |
String |
'' |
Width of the color picker. |
maxWidth |
String |
'' |
Maximum width of the color picker. |
minWidth |
String |
'' |
Minimum width of the color picker. |
height |
String |
'' |
Height of the color picker. |
maxHeight |
String |
'' |
Maximum height of the color picker. |
minHeight |
String |
'' |
Minimum height of the color picker. |
<template>
<ColorPicker :disabled="false" :showSwatches="true" :hideCanvas="false" :hideInputs="false" :elevation="2" :swatchesMaxHeight="0" width="300px" :maxWidth="" :minWidth="" :height="" :maxHeight="" :minHeight=""></ColorPicker>
</template>
<script setup>
import ColorPicker from "baran-component/ColorPicker.vue";
</script>
The BaranDatePicker
component encapsulates a date picker with customizable properties for enhanced flexibility.
Prop |
Type |
Default |
Description |
color |
String |
'#7367f0' |
Color theme of the date picker. |
disabled |
Boolean |
false |
Whether the date picker is disabled. |
showAdjacentMonths |
Boolean |
false |
Whether to show adjacent months in the date picker. |
elevation |
Number |
2 |
Elevation level of the date picker. |
rounded |
String |
'' |
Rounded corner size of the date picker. |
width |
String |
'' |
Width of the date picker. |
maxWidth |
String |
'' |
Maximum width of the date picker. |
minWidth |
String |
'' |
Minimum width of the date picker. |
height |
String |
'' |
Height of the date picker. |
maxHeight |
String |
'' |
Maximum height of the date picker. |
minHeight |
String |
'' |
Minimum height of the date picker. |
min |
String |
'' |
Minimum selectable date (format: 'YYYY-MM-DD'). |
max |
String |
'' |
Maximum selectable date (format: 'YYYY-MM-DD'). |
<template>
<BaranDatePicker color="#42a5f5" :disabled="false" :showAdjacentMonths="true" :hideCanvas="false" :hideInputs="false" :elevation="3" class="custom-datepicker" rounded="md" width="300px" maxWidth="500px" minHeight="200px" min="2024-07-01" max="2024-12-31"></BaranDatePicker>
</template>
<script setup>
import BaranDatePicker from "baran-component/BaranDatePicker.vue";
</script>
<style>
.custom-datepicker {
border: 1px solid #ccc;
border-radius: 8px;
padding: 16px;
}
</style>
The BaranTable
component is a versatile data table with search functionality, sorting, and customizable headers and items. It supports various props, slots, and events to provide flexibility.
Prop |
Type |
Default |
Description |
headers |
Array |
[{ key: 'id', title: 'INVOICE ID' }, { key: 'name', title: 'RECIPIENT NAME' }, { key: 'date', title: 'DATE' }, { key: 'amount', title: 'AMOUNT' }, { key: 'status', title: 'STATUS' }] |
Array of header objects, each containing a key and title . |
items |
Array |
[{ id: 1, name: 'Eric Cartman', date: '23 Jun, 2024', amount: '$119.99', status: 'Completed' }, { id: 2, name: 'Kenny McCormick', date: '14 Jun, 2024', amount: '$39.99', status: 'Pending' }] |
Array of item objects to display in the table. |
theme |
String |
light |
The theme of the table (light, dark). |
items-per-page |
Number |
5 |
Number of items to display per page. |
sort-by |
Array |
[] |
Array of sorting options. |
density |
String |
compact |
Density of the table (comfortable, compact). |
hide-default-footer |
Boolean |
false |
Whether to hide the default footer. |
hide-default-header |
Boolean |
false |
Whether to hide the default header. |
hide-default-body |
Boolean |
false |
Whether to hide the default body. |
height |
String |
`` |
Height of the table. |
fixed-header |
Boolean |
`falseæ |
Whether the header should be fixed. Make sure specify height. |
show-select |
Boolean |
false |
Whether to show selection checkboxes. |
selectableKey |
String |
`` |
The key used to determine if an item is selectable. |
select-strategy |
String |
page |
The strategy for item selection. page , single , all
|
multi-sort |
Boolean |
false |
Whether to allow multiple column sorting. |
groupBy |
Boolean |
false |
Whether to enable grouping of items. |
loading |
Boolean |
false |
Whether to show the loading state. |
disable-sort |
Boolean |
false |
Disables sorting completely. |
expanded |
string[] |
[] |
Whether the item is expanded or not. |
expand-on-click |
boolean |
false |
Expands item when the row is clicked. |
filter-keys |
string - string[] |
undefined |
Array of specific keys to filter on the item. |
first-icon |
string |
'$first' |
First icon. |
first-page-label |
string |
'$vuetify.dataFooter.firstPage' |
Label for first page. |
fixed-footer |
boolean |
false |
Use the fixed-footer prop together with the height prop to fix the footer to the bottom of the table. |
hide-no-data |
boolean |
false |
Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the items array changes if not already open. |
hover |
boolean |
false |
Adds a hover effects to a table rows. |
items-per-page-options |
(number - { title: string; value: number })[] |
[ {value: 10, title: '10'}, {value: 25, title: '25'}, {value: 50, title: '50'}, {value: 100, title: '100'}, {value: -1, title: '$vuetify.dataFooter.itemsPerPageAll'} ] |
Array of options to show in the items-per-page dropdown. |
items-per-page-text |
string |
'$vuetify.dataFooter.itemsPerPageText' |
Text for items-per-page dropdown. |
item-value |
SelectItemKey
|
'id' |
Property on supplied items that contains its value. |
last-icon |
string |
'$last' |
Last icon. |
last-page-label |
string |
'$vuetify.dataFooter.lastPage' |
Label for last page. |
next-icon |
string |
'$next' |
Next icon. |
next-page-label |
string |
'$vuetify.dataFooter.nextPage' |
Label for next page. |
page-text |
string |
'$vuetify.dataFooter.pageText' |
Label for page number. |
prev-icon |
string |
'$prev' |
Previous icon. |
prev-page-label |
string |
'$vuetify.dataFooter.prevPage' |
Label for previous page. |
return-object |
boolean |
false |
Changes the selection behavior to return the object directly rather than the value specified with item-value. |
search |
string |
undefined |
Text input used to filter items. |
show-current-page |
boolean |
false |
Show current page number between prev/next icons. |
show-expand |
boolean |
false |
Shows the expand toggle in default rows. |
sort-asc-icon |
any |
'$sortAsc' |
Icon used for ascending sort button. |
sort-desc-icon |
any |
'$sortDesc' |
Icon used for descending sort button. |
sticky |
boolean |
false |
Sticks the header to the top of the table. |
tag |
string |
'div' |
Specify a custom tag used on the root element. |
Slot Name |
Description |
header.id |
Slot for customizing the header of a column with key id . |
headers |
Slot for customizing the headers row. Receives columns , isSorted , getSortIcon , and toggleSort as scoped slot props. |
item |
Slot for customizing an item row. Receives item as a scoped slot prop. |
item.actions |
Slot for customizing actions for each item. Receives item as a scoped slot prop. |
group-header |
Slot for customizing the group header. Receives item , columns , toggleGroup , and isGroupOpen as scoped slot props. |
top |
Slot for placing content above the table. |
activator |
Slot for customizing the activator button of a row. |
expanded-row |
Slot for customizing the expanded row content. Receives item and columns as scoped slot props. |
loading |
Slot for customizing the loading state. |
Event |
Description |
@update:selected |
Event emitted when the selected items change. |
@update:sortBy |
Event emitted when the sorting options change. |
<template>
<BaranTable :headers="headers" item-value="name" show-select :items="items" v-model="selectedItems" @update:selected="updateSelectedItems" @update:sortBy="updateSortOptions">
<template #headers="{ columns, isSorted, getSortIcon, toggleSort }">
<tr>
<th v-for="column in columns" :key="column.key" @click="toggleSort(column)">
{{ column.title }}
<v-icon v-if="isSorted(column)">{{ getSortIcon(column) }}</v-icon>
</th>
</tr>
</template>
<template #loading>
<tr>
<td colspan="5">Loading...</td>
</tr>
</template>
</BaranTable>
</template>
<script setup>
import { ref } from "vue";
const headers = [
{ key: "id", title: "INVOICE ID" },
{ key: "name", title: "RECIPIENT NAME" },
{ key: "date", title: "DATE" },
{ key: "amount", title: "AMOUNT" },
{ key: "status", title: "STATUS" },
];
const items = [
{
id: 1,
name: "Eric Cartman",
date: "23 Jun, 2024",
amount: "$119.99",
status: "Completed",
},
{
id: 2,
name: "Kenny McCormick",
date: "14 Jun, 2024",
amount: "$39.99",
status: "Pending",
},
];
const selectedItems = ref([]);
function updateSelectedItems(newSelectedItems) {
selectedItems.value = newSelectedItems;
}
function updateSortOptions(newSortOptions) {
console.log("Sort options updated:", newSortOptions);
}
</script>
The BaranCarousel
component is a versatile carousel that can display images, text, or a mix of both. It is built with Vuetify's carousel functionality and offers various customization options.
Prop |
Type |
Default |
Description |
type |
String |
mix |
The type of carousel items to display (image , text , mix ). |
images |
Array |
[Array of default image URLs] |
An array of image URLs for the carousel. |
texts |
Array |
['I ❤️ South Park', 'I ❤️ South Park', ...] |
An array of text items for the carousel. |
colors |
Array |
['indigo', 'warning', 'pink darken-2', 'red lighten-1', 'deep-purple accent-4'] |
An array of colors for the background of text items. |
items |
Array |
[Array of default items with images, titles, and texts] |
An array of objects containing images, titles, and texts for mixed carousel items. |
fontSize |
Number |
14 |
The font size of the text in the carousel items. |
titleSize |
Number |
22 |
The font size of the title in the carousel items. |
textBackground |
String |
rgba(115, 103, 240, .8) |
The background color of the text in mixed carousel items. |
textColor |
String |
#fff |
The color of the text in the carousel items. |
height |
String |
100% |
The height of the carousel. |
showArrows |
String |
hover |
When to show the navigation arrows (always , hover , never ). |
delimiterIcon |
String |
mdi-circle |
The icon used for the carousel delimiters. |
cycle |
Boolean |
true |
Whether the carousel should automatically cycle through items. |
hideDelimiterBackground |
Boolean |
true |
Whether to hide the background of the delimiter icons. |
hideDelimiters |
Boolean |
false |
Whether to hide the delimiter icons. |
<template>
<BaranCarousel
:type="'mix'"
:height="'400px'"
:show-arrows="'always'"
:cycle="true"
:images="['https://example.com/image1.jpg', 'https://example.com/image2.jpg']"
:texts="['Text 1', 'Text 2']"
:colors="['blue', 'green']"
:items="[
{
img: 'https://example.com/image3.jpg',
title: 'Title 1',
text: 'Some descriptive text 1',
},
{
img: 'https://example.com/image4.jpg',
title: 'Title 2',
text: 'Some descriptive text 2',
},
]"
:font-size="16"
:title-size="24"
:text-background="'rgba(0, 0, 0, 0.5)'"
:text-color="'#ffffff'"
/>
</template>
<script setup></script>
AvatarMenu Component
The BaranAvatarMenu
component is a dropdown menu activated by clicking on an avatar image. It includes a navigation drawer with a list of items and integrates with Vue Router for navigation.
Prop |
Type |
Default |
Description |
items |
Array |
[{ text: 'Profile', icon: 'mdi-account-outline', href: '/components' }, { text: 'Billing', icon: 'mdi-note-text-outline', href: '/components' }] |
The list of navigation items with text, icon, and href. |
image |
String |
https://upload.wikimedia.org/wikipedia/en/7/77/EricCartman.png |
The URL of the avatar image. |
name |
String |
Baran Toro |
The name to be displayed in the menu. |
title |
String |
Frontend Developer |
The title to be displayed in the menu. |
menuHeight |
Number |
225 |
The height of the main menu section. |
Slot |
Description |
activator |
Slot for the avatar activator. |
prepend |
Slot for prepending an icon. |
Event |
Description |
@click |
Event emitted when a menu item is clicked, navigates to the item's href. |
<template>
<BaranAvatarMenu :items="menuItems" image="https://example.com/avatar.jpg" name="John Doe" title="Software Engineer" :menuHeight="300" />
</template>
<script setup>
const menuItems = [
{
text: "Dashboard",
icon: "mdi-view-dashboard-outline",
href: "/dashboard",
},
{
text: "Settings",
icon: "mdi-cog-outline",
href: "/settings",
},
];
</script>
Activity Timeline Component
The BaranActivityTimeline
component displays a list of activities using a timeline format with customizable items and participant avatars.
Sidebar Component
The BaranSidebar component provides a sidebar navigation with collapsible menu items and customizable appearance.
Prop |
Type |
Default |
Description |
logo |
String |
'' |
The URL or path to the main logo image. |
miniLogo |
String |
'' |
The URL or path to the mini version of the logo image. |
menu |
Array |
[] |
An array of objects representing the menu items and their configurations. |
currentPathColor |
String |
'#7367f0' |
The color used to highlight the current active menu item. |
The BaranSidebar component does not emit any events directly.
<template>
<BaranSidebar :logo="'/assets/logo.png'" :mini-logo="'/assets/mini-logo.png'" :menu="sidebarMenu" current-path-color="#42b983" />
</template>
<script setup>
import { ref } from "vue";
const sidebarMenu = ref([
{
icon: "mdi-view-dashboard",
title: "Dashboard",
href: "/dashboard",
},
{
icon: "mdi-account-group",
title: "Users",
href: "/users",
},
{
icon: "mdi-settings",
title: "Settings",
href: "/settings",
},
]);
</script>
BaranChartWidget Component
The BaranChartWidget
component is a flexible and customizable chart component using ApexCharts. It provides various props to configure the chart and card appearance, including dynamic data and styles.
Prop |
Type |
Default |
Description |
chartProps |
Object |
{} |
Configuration object for the ApexCharts chart. This prop is required. |
series |
Array |
[] |
Data series for the chart. |
bgColor |
String |
#fff |
Background color of the card. |
elevation |
Number |
0 |
Elevation of the card (range from 0 to 24). |
chartProps
Object Properties
Property |
Type |
Description |
chartId |
String |
Unique identifier for the chart. |
chartType |
String |
Type of the chart (e.g., line , bar , pie ). |
toolbarShow |
Boolean |
Whether to show the chart toolbar. |
fillColors |
Array |
Colors for filling the chart. |
fillType |
String |
Fill type (e.g., solid , gradient ). |
gradientShade |
String |
Gradient shade type (e.g., light , dark ). |
gradientType |
String |
Gradient type (e.g., vertical , horizontal ). |
gradientShadeIntensity |
Number |
Intensity of the gradient shade. |
gradientOpacityFrom |
Number |
Starting opacity for the gradient. |
gradientOpacityTo |
Number |
Ending opacity for the gradient. |
gridShow |
Boolean |
Whether to show the grid. |
gridPadding |
Object |
Padding for the grid. |
xaxisLabelsShow |
Boolean |
Whether to show labels on the x-axis. |
xaxisCategories |
Array |
Categories for the x-axis. |
xaxisAxisBorderShow |
Boolean |
Whether to show the x-axis border. |
xaxisAxisTicksShow |
Boolean |
Whether to show ticks on the x-axis. |
dataLabelsEnabled |
Boolean |
Whether to enable data labels. |
strokeCurve |
String |
Curve type for the stroke (e.g., smooth , straight ). |
strokeWidth |
Number |
Width of the stroke. |
titleText |
String |
Title text of the chart. |
titleAlign |
String |
Alignment of the title (e.g., left , center , right ). |
titleMargin |
Number |
Margin for the title. |
titleOffsetX |
Number |
Horizontal offset for the title. |
titleOffsetY |
Number |
Vertical offset for the title. |
titleFloating |
Boolean |
Whether the title is floating. |
titleStyle |
Object |
Style object for the title. |
subtitleText |
String |
Subtitle text of the chart. |
subtitleAlign |
String |
Alignment of the subtitle (e.g., left , center , right ). |
subtitleMargin |
Number |
Margin for the subtitle. |
subtitleOffsetX |
Number |
Horizontal offset for the subtitle. |
subtitleOffsetY |
Number |
Vertical offset for the subtitle. |
subtitleFloating |
Boolean |
Whether the subtitle is floating. |
subtitleStyle |
Object |
Style object for the subtitle. |
yaxisLabelsShow |
Boolean |
Whether to show labels on the y-axis. |
legendShow |
Boolean |
Whether to show the legend. |
responsiveOptions |
Array |
Array of responsive options. |
<template>
<BaranChart :chartProps="chartProps" :series="series" bgColor="#f5f5f5" :elevation="4" />
</template>
<script setup>
import { ref } from "vue";
const chartProps = ref({
chartId: "example-chart",
chartType: "line",
toolbarShow: true,
fillColors: ["#7367f0", "#28c76f"],
fillType: "gradient",
gradientShade: "dark",
gradientType: "vertical",
gradientShadeIntensity: 0.5,
gradientOpacityFrom: 0.7,
gradientOpacityTo: 0.3,
gridShow: true,
gridPadding: { top: 0, right: 0, bottom: 0, left: 0 },
xaxisLabelsShow: true,
xaxisCategories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun"],
xaxisAxisBorderShow: true,
xaxisAxisTicksShow: true,
dataLabelsEnabled: true,
strokeCurve: "smooth",
strokeWidth: 2,
titleText: "Monthly Sales",
titleAlign: "center",
titleMargin: 10,
titleOffsetX: 0,
titleOffsetY: 0,
titleFloating: false,
titleStyle: { fontSize: "18px", fontWeight: "bold", color: "#263238" },
subtitleText: "For the year 2024",
subtitleAlign: "center",
subtitleMargin: 10,
subtitleOffsetX: 0,
subtitleOffsetY: 30,
subtitleFloating: false,
subtitleStyle: { fontSize: "14px", fontWeight: "regular", color: "#607d8b" },
yaxisLabelsShow: true,
legendShow: true,
responsiveOptions: [
{
breakpoint: 1000,
options: {
chart: {
width: "100%",
},
},
},
],
});
const series = ref([
{
name: "Sales",
data: [30, 40, 45, 50, 49, 60],
},
]);
</script>
The BaranTooltip
component is a customizable tooltip with various props and events. Tooltips can wrap any element.
Prop |
Type |
Default |
Description |
text |
String |
Tooltip! |
The text of tooltip content. |
location |
String |
left |
The location of the tooltip. |
model-value |
Boolean |
false |
Always show. |
bgColor |
String |
#424242 |
Background color of the tooltip. |
color |
String |
#fff |
Text color of the tooltip. |
disabled |
Boolean |
false |
Whether the tooltip is disabled. |
width |
String |
'' |
The width of the tooltip. |
maxWidth |
String |
'' |
The maximum width of the tooltip. |
minWidth |
String |
'' |
The minimum width of the tooltip. |
height |
String |
'' |
The height of the tooltip. |
maxHeight |
String |
'' |
The maximum height of the tooltip. |
minHeight |
String |
'' |
The minimum height of the tooltip. |
openDelay |
[String, Number] |
undefined |
Delay (in ms) after which tooltip opens (when open-on-hover prop is set to true). |
closeDelay |
[String, Number] |
undefined |
Delay (in ms) after which menu closes (when open-on-hover prop is set to true). |
openOnClick |
Boolean |
false |
Designates whether the tooltip should open on activator click. |
openOnFocus |
Boolean |
undefined |
Activate the component when the activator is focused. |
openOnHover |
Boolean |
true |
Designates whether the tooltip should open on activator hover. |
z-index |
[String, Number] |
2000 |
The z-index used for the component. |
id |
String |
undefined |
HTML id attribute of the tooltip overlay. If not set, a globally unique id will be used. |
attach |
[String, Boolean, Element] |
false |
Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or true to disable teleporting. Uses body by default. |
Slot Name |
Description |
`` |
Slot for tooltip activator. |
<template>
<BaranTooltip text="Another Tooltip" model-value>
<div class="custom-div">Hover over me!</div>
</BaranTooltip>
</template>
<script setup>
import BaranTooltip from "baran-component/BaranTooltip.vue";
</script>
The BaranBreadcrumbs
component is a customizable breadcrumb with various props and events.
Prop |
Type |
Default |
Description |
activeClass |
String |
undefined |
The class applied to the component when it is in an active state. |
activeColor |
String |
undefined |
The applied color when the component is in an active state. |
bgColor |
String |
undefined |
Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page. |
color |
String |
undefined |
Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page. |
density |
String |
default |
Adjusts the vertical height used by the component. |
disabled |
Boolean |
galse |
Removes the ability to click or target the component. |
divider |
String |
/ |
Specifies the dividing character between items. |
icon |
Any |
undefined |
Apply a specific icon using the v-icon. |
items |
Array |
[] |
An array of strings or objects used for automatically generating children components.. |
rounded |
[String, Number Boolean] |
undefined |
Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page. |
tag |
String |
ul |
Specify a custom tag used on the root element. |
tile |
Boolean |
false |
Removes any applied border-radius from the component. |
Slot Name |
Description |
prepend |
Slot for custom prepend content. |
divider |
Slot for divider. |
title |
Slot for item title. |
<template>
<BaranBreadcrumbs :items="['Foo', 'Bar', 'Fizz']" bg-color="red">
<template v-slot:title="{ item }">
{{ item.title.toUpperCase() }}
</template>
<template v-slot:divider>
<v-icon icon="mdi-chevron-right"></v-icon>
</template>
</BaranBreadcrumbs>
</template>
<script setup>
import BaranBreadcrumbs from "baran-component/BaranBreadcrumbs.vue";
</script>
Pagination Component
The BaranPagination
component is a customizable pagination with various props and events.
Prop |
Type |
Default |
Description |
active-color |
String |
undefined |
The applied color when the component is in an active state. |
aria-label |
String |
'$vuetify.pagination.ariaLabel.root' |
Label for the root element. |
border |
[String, Number, Boolean] |
false |
Designates the border-radius applied to the component. This can be xs, sm, md, lg, xl. |
color |
String |
undefined |
Applies specified color to the selected page button - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page. |
current-page-aria-label |
String |
'$vuetify.pagination.ariaLabel.currentPage' |
Label for the currently selected page. |
density |
String |
'default' |
Adjusts the vertical height used by the component ('default', comfortable , compact ). |
disabled |
Boolean |
false |
Removes the ability to click or target the component. |
elevation |
[String, Number] |
undefined |
Designates an elevation applied to the component between 0 and 24. |
ellipsis |
String |
'...' |
Text to show between page buttons when truncating the list. |
first-aria-label |
String |
'$vuetify.pagination.ariaLabel.first' |
Label for the go to first button. |
first-icon |
Any |
'$first' |
The icon to use for the first button. |
last-aria-label |
String |
'$vuetify.pagination.ariaLabel.last' |
Label for the go to last button. |
last-icon |
Any |
'$last' |
The icon to use for the last button. |
length |
[String, Number] |
1 |
The number of pages. |
model-value |
Number |
undefined |
The v-model value of the component. If component supports the multiple prop, this defaults to an empty array. |
next-aria-label |
String |
'$vuetify.pagination.ariaLabel.next' |
Label for the next button. |
next-icon |
Any |
'$next' |
The icon to use for the next button. |
page-aria-label |
String |
'$vuetify.pagination.ariaLabel.page' |
Label for each page button. |
prev-icon |
Any |
'$prev' |
The icon to use for the prev button. |
previous-aria-label |
String |
'$vuetify.pagination.ariaLabel.previous' |
Label for the previous button. |
rounded |
[String, Number, Boolean] |
undefined |
Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page. |
show-first-last-page |
Boolean |
false |
Show buttons for going to first and last page. |
size |
[String, Number] |
'default' |
Sets the height and width of the component. Default unit is px. Can also use the following predefined sizes: x-small, small, default, large, and x-large. |
start |
[String, Number] |
1 |
Specify the starting page. |
tag |
String |
'nav' |
Specify a custom tag used on the root element. |
theme |
String |
undefined |
Specify a theme for this component and all of its children. |
tile |
Boolean |
false |
Removes any applied border-radius from the component. |
total-visible |
[String, Number] |
undefined |
Specify the total visible pagination numbers. |
variant |
String |
'text' |
Applies a distinct style to the component. (flat , elevated , tonal , outlined , text , plain ) |
<template>
<BaranPagination :length="5" v-model="currenctPage"> </BaranPagination>
</template>
<script setup>
import BaranPagination from "baran-component/BaranPagination.vue";
const currenctPage = ref(1);
</script>
The BaranSlider
component is a customizable slider with various props and events.
Prop |
Type |
Default |
Description |
append-icon |
Any |
undefined |
Creates a v-icon component after default content in the append slot. |
center-affix |
Boolean |
true |
Vertically align appendInner, prependInner, clearIcon and label in the center. |
color |
String |
undefined |
Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page. |
density |
String |
'default' |
Adjusts the vertical height used by the component. ('default', comfortable , compact ) |
direction |
String |
'horizontal' |
Changes the direction of the input. (horizontal , vertical ) |
disabled |
Boolean |
null |
Removes the ability to click or target the component. |
elevation |
[String, Number] |
2 |
Designates an elevation applied to the component between 0 and 24. |
error |
Boolean |
false |
Puts the input in a manual error state. |
error-messages |
String | String[] |
[] |
Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation. |
focused |
Boolean |
false |
Forces a focused state styling on the component. |
hide-details |
Boolean | 'auto' |
false |
Hides hint and validation errors. When set to auto messages will be rendered only if there’s a message (hint, error message, counter value etc) to display. |
hide-spin-buttons |
Boolean |
false |
Hides spin buttons on the input when type is set to number. |
hint |
string |
undefined |
Displays hint text below the input when focused. Force this always open with the persistent-hint property. |
id |
string |
undefined |
Sets the DOM id on the component. |
label |
string |
undefined |
Sets the text of the v-label or v-field-label component. |
max |
[String, Number] |
100 |
Sets the maximum allowed value. |
max-errors |
[String, Number] |
1 |
Control the maximum number of shown errors from validation. |
max-width |
[String, Number] |
undefined |
Sets the maximum width for the component. |
messages |
String | String[] |
[] |
Displays a list of messages or a single message if using a string. |
min |
[String, Number] |
0 |
Sets the minimum allowed value. |
min-width |
[String, Number] |
undefined |
Sets the minimum width for the component. |
model-value |
[String, Number] |
0 |
The v-model value of the component. If component supports the multiple prop, this defaults to an empty array. |
name |
string |
undefined |
Sets the component’s name attribute. |
persistent-hint |
Boolean |
false |
Forces hint to always be visible. |
prepend-icon |
any |
undefined |
Prepends an icon to the component, uses the same syntax as v-icon. |
readonly |
Boolean |
null |
Puts input in readonly state. |
reverse |
Boolean |
false |
Reverses the slider direction. |
ripple |
Boolean |
true |
Applies the v-ripple directive. |
rounded |
[String, Number, Boolean] |
undefined |
Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page. |
rules |
ValidationRule[] |
[] |
Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string. |
show-ticks |
Boolean | 'always' |
false |
Show track ticks. If true it shows ticks when using slider. If set to 'always' it always shows ticks. |
step |
[String, Number] |
0 |
If greater than 0, sets step interval for ticks. |
theme |
String |
undefined |
Specify a theme for this component and all of its children. |
thumb-color |
String |
undefined |
Sets the thumb and thumb label color. |
thumb-label |
Boolean | 'always' |
undefined |
Show thumb label. If true it shows label when using slider. If set to 'always' it always shows label. |
thumb-size |
[String, Number] |
20 |
Controls the size of the thumb label. |
ticks |
Number[] | Record<number, string> |
undefined |
Show track ticks. If true it shows ticks when using slider. If set to 'always' it always shows ticks. |
tick-size |
[String, Number] |
2 |
Controls the size of ticks. |
tile |
Boolean |
false |
Removes any applied border-radius from the component. |
track-color |
String |
undefined |
Sets the track’s color. |
track-fill-color |
String |
undefined |
Sets the track’s fill color. |
track-size |
[String, Number] |
4 |
Sets the track’s size (height). |
validate-on |
'blur' | 'input' | 'submit' | 'blur lazy' | 'input lazy' | 'submit lazy' | 'lazy blur' | 'lazy input' | 'lazy submit' | 'lazy' |
undefined |
Change what type of event triggers validation to run. |
validation-value |
Any |
undefined |
The value used when applying validation rules. |
width |
[String, Number] |
undefined |
Sets the width for the component. |
Slot Name |
Description |
prepend |
Slot for custom prepend content. |
append |
Slot for custom append content. |
<template>
<BaranSlider v-model="volume" step="1" show-ticks color="orange" track-color="green" thumb-color="red">
<template v-slot:prepend>
<v-btn color="#7367f0" icon="mdi-minus" size="small" variant="text" @click="volume--"></v-btn>
</template>
<template v-slot:append>
<v-btn color="#7367f0" icon="mdi-plus" size="small" variant="text" @click="volume++"></v-btn>
</template>
</BaranSlider>
</template>
<script setup>
import { ref } from "vue";
import BaranSlider from "baran-component/BaranSlider.vue";
const volume = ref(0);
</script>
The BaranTextarea
component is a customizable textarea with various props and events.
Prop |
Type |
Default |
Description |
active |
boolean |
false |
Controls the active state of the item. This is typically used to highlight the component. |
append-icon |
any |
undefined |
Creates a v-icon component after default content in the append slot. |
append-inner-icon |
any |
undefined |
Creates a v-icon component in the append-inner slot. |
autofocus |
boolean |
false |
MISSING DESCRIPTION (edit in github) |
auto-grow |
boolean |
false |
Automatically grow the textarea depending on amount of text. |
base-color |
string |
undefined |
Sets the color of the input when it is not focused. |
bg-color |
string |
undefined |
Applies specified color to the control’s background. Used on components that also support the color prop. - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page. |
clearable |
boolean |
false |
Allows for the component to be cleared. |
clear-icon |
any |
'$clear' |
The icon used when the clearable prop is set to true. |
color |
string |
undefined |
Applies specified color to the control - supports utility colors (for example success or purple) or css color (#033 or rgba(255, 0, 0, 0.5)). Find a list of built-in classes on the colors page. |
counter |
string | number | true |
false |
Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation. |
counter-value |
(value: any) => number |
compact |
Display the input length but do not provide any validation. |
density |
String |
'compact' |
Adjusts the vertical height used by the component. ('default' | 'comfortable' | 'compact') |
direction |
'horizontal' | 'vertical' |
'horizontal' |
Changes the direction of the input. |
dirty |
boolean |
false |
Manually apply the dirty state styling. |
disabled |
boolean |
null |
Removes the ability to click or target the input. |
error |
boolean |
false |
Puts the input in a manual error state. |
error-messages |
string | string[] |
[] |
Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation. |
flat |
boolean |
false |
Removes box shadow when using a variant with elevation. |
focused |
boolean |
false |
Forces a focused state styling on the component. |
hide-details |
boolean | 'auto' |
false |
Hides hint and validation errors. When set to auto messages will be rendered only if there’s a message (hint, error message, counter value etc) to display. |
hide-spin-buttons |
boolean |
false |
Hides spin buttons on the input when type is set to number. |
hint |
string |
undefined |
Displays hint text below the input when focused. Force this always open with the persistent-hint property. |
id |
string |
undefined |
Sets the DOM id on the component. |
label |
string |
Textarea |
Sets the text of the v-label or v-field-label component. |
loading |
string | boolean |
false |
Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it’s supported by the component) or the primary color. |
max-errors |
string | number |
1 |
Control the maximum number of shown errors from validation. |
max-rows |
string | number |
undefined |
Specifies the maximum number of row count. |
max-width |
string | number |
undefined |
Sets the maximum width for the component. |
messages |
string | string[] |
[] |
Displays a list of messages or a single message if using a string. |
min-width |
string | number |
undefined |
Sets the minimum width for the component. |
model-value |
any |
undefined |
The v-model value of the component. If component supports the multiple prop, this defaults to an empty array. |
name |
string |
undefined |
Sets the component’s name attribute. |
no-resize |
boolean |
false |
Remove resize handle. |
persistent-clear |
boolean |
false |
Always show the clearable icon when the input is dirty (By default it only shows on hover). |
persistent-counter |
boolean |
false |
Forces counter to always be visible. |
persistent-hint |
boolean |
false |
Forces hint to always be visible. |
persistent-placeholder |
boolean |
false |
Forces placeholder to always be visible. |
placeholder |
string |
Type something |
Sets the input’s placeholder text. |
prefix |
string |
undefined |
Displays prefix text. |
prepend-icon |
any |
undefined |
Prepends an icon to the component, uses the same syntax as v-icon. |
prepend-inner-icon |
any |
undefined |
Creates a v-icon component in the prepend-inner slot. |
readonly |
boolean |
null |
Puts input in readonly state. |
reverse |
boolean |
false |
Reverses the orientation. |
rounded |
string | number | boolean |
undefined |
Designates the border-radius applied to the component. This can be 0, xs, sm, true, lg, xl, pill, circle, and shaped. Find more information on available border radius classes on the Border Radius page. |
rows |
string | number |
5 |
Default row count. |
rules |
ValidationRule[] |
[] |
Accepts a mixed array of types function, boolean and string. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string. |
single-line |
boolean |
false |
Label does not move on focus/dirty. |
suffix |
string |
undefined |
Displays suffix text. |
theme |
string |
undefined |
Specify a theme for this component and all of its children. |
tile |
boolean |
false |
Removes any applied border-radius from the component. |
validate-on |
'blur' | 'input' | 'submit' | 'blur lazy' | 'input lazy' | 'submit lazy' | 'lazy blur' | 'lazy input' | 'lazy submit' | 'lazy' |
undefined |
Change what type of event triggers validation to run. |
validation-value |
any |
undefined |
The value used when applying validation rules. |
variant |
String |
'outlined' |
Applies a distinct style to the component. ('underlined' | 'outlined' | 'filled' | 'solo' | 'solo-inverted' | 'solo-filled' | 'plain') |
width |
string | number |
undefined |
Sets the width for the component. |
<template>
<BaranTextarea bgColor="light-blue" clearable label="Label" prepend-icon="$vuetify" variant="solo-inverted" v-model="value"></BaranTextarea>
</template>
<script setup>
import { ref } from "vue";
import BaranTextarea from "baran-component/BaranTextarea.vue";
const value = ref("");
</script>
Infinite Scroll Component
The BaranInfiniteScroll
component displays a potentially infinite list, by loading more items of the list when scrolling. It supports either vertical or horizontal scrolling.
Prop |
Type |
Default |
Description |
custom-filter |
FilterFunction |
undefined |
Function to filter items. |
custom-key-filter |
unknown |
undefined |
Function used on specific keys within the item object. customFilter is skipped for columns with customKeyFilter specified. |
custom-key-sort |
unknown |
undefined |
Function used on specific keys within the item object. customSort is skipped for columns with customKeySort specified. |
expanded |
string[] |
[] |
Array of expanded items. Can be used with .sync modifier. |
expand-on-click |
boolean |
false |
Expands item when the row is clicked. |
filter-keys |
string | string[] |
undefined |
Array of specific keys to filter on the item. |
filter-mode |
'every' | 'some' | 'union' | 'intersection' |
'intersection' |
Controls how the results of customFilter and customKeyFilter are combined. some: There is at least one match from either the custom filter or the custom key filter. every: All columns match either the custom filter or the custom key filter. union: There is at least one match from the custom filter, or all columns match the custom key filters. intersection: There is at least one match from the custom filter, and all columns match the custom key filters. |
group-by |
SortItem[] |
[] |
Changes which item property should be used for grouping items. Currently only supports a single grouping in the format: group or ['group'] . When using an array, only the first element is considered. Can be used with .sync modifier. |
items |
unknown[] |
[] |
An array of strings or objects used for automatically generating children components. |
item-selectable |
SelectItemKey |
null |
Property on supplied items that contains the boolean value indicating if the item is selectable. |
items-per-page |
string | number |
5 |
Changes how many items per page should be visible. Can be used with .sync modifier. Setting this prop to -1 will display all items on the page. |
item-value |
SelectItemKey |
'id' |
Property on supplied items that contains its value. |
loading |
boolean |
false |
If true and no items are provided, then a loading text will be shown. |