Boaris

Results 14 issues of Boaris

For the following string resource: ```xml - small text\n - small text\n - small text ``` And the following code: ```kotlin MarkdownText( markdown = stringResource(R.string.test), fontSize = 14.sp ) ```...

### Describe the bug Autogeneration of Storybook Controls works properly for the following component declaration: ```tsx function Component(props: {...}) {...} export default Component ``` But not for: ```tsx export default...

bug
react
has workaround
argtypes
sev:S4

# Bug report ## Packages affected - [x] nodebox ## Description of the problem I can't make the simplest example work with Next.js and Nodebox. ## What were you doing...

bug
triage

Not: ```js export const gray = { gray1: "#fcfcfc", gray2: "#f9f9f9", gray3: "#f0f0f0", // etc. }; ``` But: ```js export const gray = { 1: "#fcfcfc", 2: "#f9f9f9", 3: "#f0f0f0",...

Proper documentation is generated for the following declaration: ```tsx function Component() {...} export default Component ``` But not for: ```tsx export default function Component() {...} ```

**Describe the bug** User Story: 1. I have a Button: ```tsx const Button = classed('button', { defaultVariants: { size: 'default', variant: 'default', }, variants: { size: { default: '...', sm:...

**Is your feature request related to a problem? Please describe.** Sometimes it's important to wrap component's `children` with another component: ```tsx function Component({children, ...props}) { return {children} // not just...

**Is your feature request related to a problem? Please describe.** One of the problems with the `as` is that it can't be chained: ```tsx Share ``` **Describe the solution you'd...

**Font Name (Geist Sans/Geist Mono):** - [x] Geist Sans - [x] Geist Mono **Description of the Issue:** Importing the font into Storybook breaks it. Importing fonts via `next/font` works fine,...

bug
where: package

### Provide a general summary of the issue here Using `mergeProps` in server components gives the following error: ``` Error: createContext only works in Client Components. Add the "use client"...

enhancement