Skip to main content
Glama
deleonio
by deleonio
max-length-behavior.ts859 B
import type { Generic } from 'adopted-style-sheets'; import { watchValidator } from '../utils'; /* types */ const maxLengthBehaviorPropTypeOptions = ['hard', 'soft'] as const; export type MaxLengthBehaviorPropType = (typeof maxLengthBehaviorPropTypeOptions)[number]; /** * Defines the behavior when maxLength is set. 'hard' sets the maxlength attribute, 'soft' shows a character counter without preventing input. */ export type PropMaxLengthBehavior = { maxLengthBehavior: MaxLengthBehaviorPropType; }; /* validator */ export const validateMaxLengthBehavior = (component: Generic.Element.Component, value?: MaxLengthBehaviorPropType): void => { watchValidator( component, '_maxLengthBehavior', (value): boolean => typeof value === 'string' && maxLengthBehaviorPropTypeOptions.includes(value), new Set(['String {hard, soft}']), value, ); };

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/deleonio/public-ui-kolibri'

If you have feedback or need assistance with the MCP directory API, please join our Discord server