mirror of
https://github.com/tabler/tabler.git
synced 2026-08-07 03:42:27 +04:00
f27c70ad38
`Render Modal as real markup` (#2742) reformatted ~140 files back to tabs/semicolons, breaking the Prettier config added by the Astro quality gates (#2749). Re-run prettier --write to restore it, and fix the type errors it had been masking: HTMLElement casts and `this` typing in ChangePasswordModalContent/ConfirmDeleteModalContent scripts, plain-JS syntax in the inline-injected progress.astro script, narrowed prop unions in Button/Check/Spinner, nullable icon svg casts in Icons/Rating, and a duplicate firstLetters/invalid `placeholder` attribute in Select.astro. Also fix shared/vitest.config.mts's stale `astro/lib/**/*.test.ts` include glob left over from the shared source restructure, which made `pnpm test` report zero test files.
24 lines
874 B
Plaintext
24 lines
874 B
Plaintext
---
|
|
// With explicit `size`: `spinner-{type}-{size}`. Without `size`: `spinner-{type}-{argCount}` (e.g. spinner-border-2).
|
|
import { includeArgCount } from '@shared/lib/include-args'
|
|
|
|
interface Props {
|
|
element?: 'div' | 'span'
|
|
type?: string
|
|
color?: string
|
|
size?: string
|
|
class?: string
|
|
}
|
|
|
|
const { element: Element = 'div', type = 'border', color, size, class: className } = Astro.props
|
|
|
|
const includeArgKeys = ['element', 'type', 'color', 'size', 'class'] as const
|
|
const argCount = includeArgCount(Astro.props as Record<string, unknown>, includeArgKeys)
|
|
// include['size'] → explicit value, else the arg count meta-property.
|
|
const sizeValue = size !== undefined ? size : argCount || undefined
|
|
|
|
const classes = [`spinner-${type}`, color && `text-${color}`, sizeValue && `spinner-${type}-${sizeValue}`, className]
|
|
---
|
|
|
|
<Element class:list={classes} role="status" />
|