baked-recipe-admin
Version:
Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.
25 lines (21 loc) • 1.03 kB
TypeScript
import type { ListboxTokenSections } from '@primeuix/themes/types/listbox';
export * from '@primeuix/themes/types/listbox';
declare const root: ListboxTokenSections.Root;
declare const list: ListboxTokenSections.List;
declare const option: ListboxTokenSections.Option;
declare const optionGroup: ListboxTokenSections.OptionGroup;
declare const checkmark: ListboxTokenSections.Checkmark;
declare const emptyMessage: ListboxTokenSections.EmptyMessage;
declare const colorScheme: ListboxTokenSections.ColorScheme;
declare const css: ListboxTokenSections.CSS;
declare const _default: {
root: ListboxTokenSections.Root;
list: ListboxTokenSections.List;
option: ListboxTokenSections.Option;
optionGroup: ListboxTokenSections.OptionGroup;
checkmark: ListboxTokenSections.Checkmark;
emptyMessage: ListboxTokenSections.EmptyMessage;
colorScheme: ListboxTokenSections.ColorScheme;
css: string;
};
export { checkmark, colorScheme, css, _default as default, emptyMessage, list, option, optionGroup, root };