[READ-ONLY] Mirror of https://github.com/lukebennett88/luke-ui. luke-ui.netlify.app/
0

Configure Feed

Select the types of activity you want to include in your feed.

Sort props/attributes

Luke Bennett (Jul 6, 2026, 3:52 PM +1000) 77b49e56 2097771b

+12 -11
+4 -4
apps/docs/src/lib/layout.shared.tsx
··· 3 3 4 4 export function baseOptions(): BaseLayoutProps { 5 5 return { 6 - nav: { 7 - title: 'Luke UI', 8 - }, 9 6 links: [ 10 7 { 8 + external: true, 11 9 text: 'Storybook', 12 10 url: `${getStorybookBaseUrl(import.meta.env.BASE_URL)}/`, 13 - external: true, 14 11 }, 15 12 ], 13 + nav: { 14 + title: 'Luke UI', 15 + }, 16 16 }; 17 17 }
+1 -1
packages/@luke-ui/react/src/combobox-field/index.tsx
··· 1 1 import type { CSSProperties, JSX } from 'react'; 2 2 import type { ComboBoxProps as RacComboBoxProps } from 'react-aria-components/ComboBox'; 3 - import { composeField } from '../field/compose-field.js'; 4 3 import type { FieldSlotProps } from '../field/compose-field.js'; 4 + import { composeField } from '../field/compose-field.js'; 5 5 import { Field } from '../field/primitive/index.js'; 6 6 import { Icon } from '../icon/index.js'; 7 7 import { LoadingSpinner } from '../loading-spinner/index.js';
+1 -1
packages/@luke-ui/react/src/combobox-field/primitive/clear-button.tsx
··· 1 1 import type { JSX } from 'react'; 2 2 import { useContext } from 'react'; 3 3 import type { ButtonProps as RacButtonProps } from 'react-aria-components/ComboBox'; 4 - import { Button as RacButton, ComboBoxStateContext } from 'react-aria-components/ComboBox'; 4 + import { ComboBoxStateContext, Button as RacButton } from 'react-aria-components/ComboBox'; 5 5 import { composeRenderProps } from 'react-aria-components/composeRenderProps'; 6 6 import { IconSizeProvider } from '../../icon-size-context/index.js'; 7 7 import * as styles from '../../recipes/combobox.css.js';
+1 -1
packages/@luke-ui/react/src/recipes/loading-skeleton.css.ts
··· 1 - import { keyframes } from '@vanilla-extract/css'; 2 1 import type { StyleRule } from '@vanilla-extract/css'; 2 + import { keyframes } from '@vanilla-extract/css'; 3 3 import { globalStyleInLayer, styleInLayer } from '../styles/layered-style.css.js'; 4 4 import { vars } from '../styles/vars.css.js'; 5 5
+1 -1
packages/@luke-ui/react/src/text-field/index.tsx
··· 4 4 TextFieldProps as RacTextFieldProps, 5 5 } from 'react-aria-components/TextField'; 6 6 import { TextField as RacTextField } from 'react-aria-components/TextField'; 7 - import { composeField } from '../field/compose-field.js'; 8 7 import type { FieldSlotProps } from '../field/compose-field.js'; 8 + import { composeField } from '../field/compose-field.js'; 9 9 import { Field } from '../field/primitive/index.js'; 10 10 import type { DocumentedInputProps } from '../types/documented-rac-props.js'; 11 11 import type { TextInputSize } from './primitive/index.js';
+1 -1
packages/@luke-ui/react/src/tokens/tokens-vars.stories.tsx
··· 5 5 import { 6 6 colorToCssString, 7 7 isColorTokenValue, 8 + toCssValue, 8 9 tokenKeys, 9 10 tokens, 10 - toCssValue, 11 11 } from '@luke-ui/react/tokens'; 12 12 import ColorJs from 'colorjs.io'; 13 13 import type { CSSProperties } from 'react';
+1
packages/turbo-generators/config.ts
··· 3 3 import { applyComponentCreationPlan } from './src/apply-component-creation-plan.js'; 4 4 import type { CreateComponentInput } from './src/component-creation-plan.js'; 5 5 import { createComponentPlan } from './src/component-creation-plan.js'; 6 + 6 7 const COMPONENT_NAME_RE = /^[A-Za-z][A-Za-z0-9-]*$/; 7 8 const COMPONENT_TIERS = ['atom', 'composed'] as const; 8 9 const COMPONENT_STYLING = ['none', 'recipe'] as const;
+2 -2
turbo.json
··· 77 77 "persistent": true 78 78 }, 79 79 "docs#generate": { 80 - "outputs": ["src/routeTree.gen.ts"], 81 - "cache": true 80 + "cache": true, 81 + "outputs": ["src/routeTree.gen.ts"] 82 82 }, 83 83 "fix": { 84 84 "cache": false,