REDROOM
PHP 8.2.30
Path:
Logout
Edit File
Size: 4.14 KB
Close
//proc/thread-self/root/home/byroehnu/.trash/node_modules11/@adminjs/design-system/src/atoms/label/label.tsx
Text
Base64
import { color, space, SpaceProps, TypographyProps, typography, variant, } from 'styled-system' import { styled, css } from '@styled-components' import { cssClass } from '../../utils/css-class.js' import themeGet from '../../utils/theme-get.js' import { NewColorProps as ColorProps } from '../../utils/color-props.js' import type { VariantType } from '../../theme.js' export type LabelVariantType = VariantType const labelVariants = variant<any, LabelVariantType>({ variants: { primary: { color: 'primary100', [`& .${cssClass('Icon')} svg`]: { stroke: 'primary100', }, }, danger: { color: 'error', [`& .${cssClass('Icon')} svg`]: { stroke: 'error', }, }, success: { color: 'success', [`& .${cssClass('Icon')} svg`]: { stroke: 'success', }, }, info: { color: 'info', [`& .${cssClass('Icon')} svg`]: { stroke: 'info', }, }, secondary: { color: 'accent', [`& .${cssClass('Icon')} svg`]: { stroke: 'accent', }, }, light: { color: 'grey60', mb: 'sm', fontWeight: 'light', [`& .${cssClass('Icon')} svg`]: { stroke: 'grey60', }, }, default: {}, }, }) /** * Prop Types of a Label component. * Apart from those explicitly specified below it extends all {@link ColorProps}, * {@link SpaceProps} and {@link TypographyProps} * * @memberof Label * @alias LabelProps * @property {string} [...] All props default to _label_ html component like `htmlFor`, * `id` etc. * @property {string} [...] Other props from {@link ColorProps}, {@link SpaceProps} * and {@link TypographyProps} */ export type LabelProps = ColorProps & SpaceProps & TypographyProps & { /** If label represents required field - appends star (*) */ required?: boolean; /** If label should be in uppercase version */ uppercase?: boolean; /** By default labels are displayed as a block. You can override this by setting `inline` */ inline?: boolean; /** If label represents disabled field (dimmed version) */ disabled?: boolean; /** Color variant */ variant?: LabelVariantType; /** Label size */ size?: 'default' | 'lg' } const setDisabled = ({ disabled, theme }): any => ( disabled ? css` color: ${theme.colors.grey40}; & .${cssClass('Icon')} svg { stroke: ${theme.colors.grey40}; } ` : css`` ) /** * @classdesc * * <img src="components/label.png" /> * * Styled form of **label** element. * * ### Usage * * ```javascript * import { Label, LabelProps } from '@adminjs/design-system' * ``` * * @component * @subcategory Atoms * @see LabelProps * @see {@link https://storybook.adminjs.co/?path=/story/designsystem-atoms-label--default Storybook} * @hideconstructor * @example <caption>2 Different versions</caption> * return ( * <Box p="xl"> * <Text> * <Label uppercase>Some uppercase label</Label> * </Text> * <Text mt="default"> * <Label required>Label for required field</Label> * </Text> * </Box> * ) * @section design-system */ const Label = styled.label<LabelProps>` display: ${({ inline }): string => (inline ? 'inline-block' : 'block')}; font-family: ${themeGet('font')}; font-size: ${(props): string => themeGet('fontSizes', props.size === 'lg' ? 'md' : 'sm')(props)}; line-height: ${themeGet('lineHeights', 'default')}; margin-bottom: ${({ theme, inline }): string => (inline ? '0' : theme.space.default)}; &:before { content: "${({ required }): string => (required ? '*' : '')}"; color: ${themeGet('colors', 'primary100')}; margin-right: ${themeGet('space', 'sm')}; display: ${({ required }): string => (required ? 'block-inline' : 'none')}; } & > .${cssClass('Icon')}:first-child { margin-right: ${themeGet('space', 'md')}; } ${({ uppercase }): string => (uppercase ? 'text-transform: uppercase;' : '')} ${color}; ${typography}; ${space}; ${labelVariants}; ${(props) => setDisabled(props as any)}; ` Label.defaultProps = { className: cssClass('Label'), } Label.displayName = 'Label' export { Label } export default Label
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 3
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
index.ts
28 B
lrw-r--r--
2026-02-28 00:31:46
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
label.stories.tsx
1.11 KB
lrw-r--r--
2026-02-28 00:31:56
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
label.tsx
4.14 KB
lrw-r--r--
2026-02-28 00:31:58
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).