Fundamentals
Components
Code Utilities
Demo

Information

Basic information about the application.

Typography

Guidelines on using typography effectively.

Colors

Color schemes and usage guidelines.

Base Components

Fundamental components for building UI elements.

Form Components

Components used for creating forms.

Card Components

Components designed for card layouts.

Layout Components

Components for managing layout structure.

Utility Components

Utility components for various functions.

Media Components

Components for handling media content.

<not-set>

<not-set>

DataSource

Data binding and source management component.

C# Code

Utilities and examples for C# programming.

JavaScript

Guidelines and tools for JavaScript development.

Styles

Styling guidelines and utilities.

License

Information about the project's license.

Contact

How to get in touch with us.

Git Repository

Access the project's Git repository.

Contact

How to get in touch with us.

Donate

Support the development by donating.

BcComponentBase

Base class for BlazorCraft components.

BcInputComponentBase

Base class for input components.

BcLayoutComponentBase

Base class for layout components.

BcCard

Basic card layout component.

BcCardGroup

Group of card components.

BcActionCard

Card component with action elements.

BcComboCard

Card combining multiple features.

BcDateCard

Card component displaying dates.

BcDateTimeCard

Card displaying date and time.

BcEntryCard

Card for data entry.

BcExpandCard

Expandable card component.

BcExpandComboCard

Card combining multiple features.

BcRadioCard

Card with radio button options.

BcSpinCard

Card with spinner control.

BcSwitchCard

Card with switch toggle.

BcTimeCard

Card displaying time information.

BcButton

Button component for user interactions.

BcCheckbox

Checkbox input component.

BcDropDown

Dropdown list selection component.

BcFileDrop

Component for dragging and dropping files.

BcRadioButton

Radio button input component.

BcRange

Range slider input component.

BcValidation

Validation utilities for form inputs.

BcInputText

Text input field component.

BcInputNumber

Number input field component.

BcInputDate

Date input field component.

BcTextArea

Multi-line text input component.

BcTextEditor

Rich text editor component.

BcTimePicker

Component for selecting time.

BcDateTimePicker

Component for selecting date and time.

BcCalendarDatePicker

Date picker with calendar interface.

AutoGrid

Automatic grid layout component.

Grid

Grid layout component.

BreakpointListener

Component to detect responsive breakpoints.

Clamp

Component for clamping content.

ContentInjector

Inject content dynamically.

Flex

Flexible box layout component.

Not Found

Page not found component.

Section

Layout section component.

ThemeRenderer

Component for rendering themes.

BcImage

Image display component.

BcSvg

SVG rendering component.

BcImageCropper

Component for cropping images.

BcBanner

Banner display component.

BcContextMenu

Context menu component.

BcDialog

Dialog/modal component.

BcDragProvider

Component providing drag-and-drop functionality.

BcExpander

Expandable content component.

BcProgressBar

Progress bar indicator component.

BcSidebarView

Sidebar navigation component.

BcSlider

Slide show component.

BcSpinner

Loading spinner component.

BcSteps

Step-by-step wizard component.

BcTabs

Tab navigation component.

BcToast

Toast notification component.

BcTooltip

Tooltip display component.

<not-set>

<not-set>

<not-set>

<not-set>

<not-set>

<not-set>

<not-set>

<not-set>

<not-set>

<not-set>

BcAnimation

Animation utilities and components.

BcAnimationTimeLine

Timeline for managing animations.

BcBrowserFile

Upload files with Path and progress state.

BcCanvasBuilder

BcCanvasBuilder utilities and examples.

BcCssClassBuilder

Utility for building CSS class strings.

BcCssStyleBuilder

Utility for building CSS style strings.

BcCssColorMixer

Utility for mixing CSS colors.

BcLocalizer

Localization utilities.

BcJsBrowserLanguageService

Service for loading and setting the language for the Localizer.

BcJsCanvasService

Service for creating Canvas Images

BcJsClipBoardService

Service for clipboard operations.

BcJsCookieService

Service for handling cookies in JavaScript.

BcJsDomService

Service for DOM manipulations.

BcJsFileService

Service for file operations.

BcJsInputService

Service for registering input listeners.

BcJsLocalStorageService

Service for local storage operations.

BcJsMouseService

Service for mouse event handling.

BcJsSoundService

Service for playing sounds.

BcJsThemeService

Service for detecting browser theme settings.

BcJsTouchService

Service for handling touch input.

BcJsVibrateService

Service for triggering device vibrations.

Css BorderRadius Classes

Utilities for border radius styling.

Css Cursor Classes

Utilities for cursor styling.

Css Display Classes

CSS display property utilities.

Css Flex Classes

CSS flexbox utilities.

Css Grid Classes

CSS flexbox utilities.

Css FontSize Classes

Utilities for font sizes.

Css Margin Classes

Utilities for CSS margins.

Css Padding Classes

Utilities for CSS padding.

Css Scroll Classes

Utilities for scroll behavior.

Css Text Classes

Utilities for text styling.

Css Width Classes

Utilities for element widths.

Css Height Classes

Utilities for element heights.

BcDataTable

DataTable bound the the BcDatasource

BcInfiniteScroll

Unlimited Scroll through your BcDatasource

BcInputText

Description

The BcInputText component is a customizable text input field with optional features like password masking, copy to clipboard, and focus control.

Parameters

PlaceHolder

string?

The placeholder text displayed inside the input field.

Password

bool

Determines whether the input field should be treated as a password field.

ShowPencil

bool

Indicates whether a pencil icon should be displayed for focus setting.

ShowCopy

bool

Indicates whether a copy icon should be displayed to copy the text.

ActionBefore

RenderFragment?

A render fragment to insert content before the input field.

ActionAfter

RenderFragment?

A render fragment to insert content after the input field.

InputClass

string?

Additional CSS classes to apply to the input element.

Methods

CopyTextToClipboard ( )

Copies the current text value to the clipboard.

Task
SetFocus ( )

Sets focus on the input field.

Task
TogglePassword ( )

Toggles between showing and hiding the password field.

void

Settings

Password

Set the inputs to type 'password'

Disabled

Set the inputs to 'disabled'

Read Only

Set the inputs to 'readonly'

ShowCopyToClipboard

Enables the copy text to Clipboard button'

ShowPencil

Enables the Pen button to set focus to the input'

Default

The default StylesColorFormatingState

Success

The success StylesColorFormatingState

Warning

The warning StylesColorFormatingState

Error

The error StylesColorFormatingState

Sample