components icon indicating copy to clipboard operation
components copied to clipboard

refactor(multiple): add types for string-based enum inputs

Open andrewseguin opened this issue 3 months ago • 0 comments

export type GridRowRole = 'row' | 'rowheader';
export type GridCellRole = 'gridcell' | 'columnheader';
export type GridFocusMode = 'roving' | 'activedescendant';
export type GridWrapStrategy = 'continuous' | 'loop' | 'nowrap';
export type ListFocusMode = 'roving' | 'activedescendant';
export type ListOrientation = 'horizontal' | 'vertical';
export type ListSelectionMode = 'follow' | 'explicit';
export type ComboboxFilterMode = 'manual' | 'auto-select' | 'highlight';
export type GridSelectionMode = 'follow' | 'explicit';
export type TreeCurrentType = 'page' | 'step' | 'location' | 'date' | 'time' | 'true' | 'false';

andrewseguin avatar Nov 12 '25 22:11 andrewseguin