- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
20 lines
No EOL
778 B
TypeScript
20 lines
No EOL
778 B
TypeScript
import { CSSUnformattedItem, IconCSSIconSetOptions, IconContentIconSetOptions } from "./types.js";
|
|
import { IconifyJSON } from "@iconify/types";
|
|
interface CSSData {
|
|
common?: CSSUnformattedItem;
|
|
css: CSSUnformattedItem[];
|
|
errors: string[];
|
|
}
|
|
/**
|
|
* Get data for getIconsCSS()
|
|
*/
|
|
declare function getIconsCSSData(iconSet: IconifyJSON, names: string[], options?: IconCSSIconSetOptions): CSSData;
|
|
/**
|
|
* Get CSS for icons as background/mask
|
|
*/
|
|
declare function getIconsCSS(iconSet: IconifyJSON, names: string[], options?: IconCSSIconSetOptions): string;
|
|
/**
|
|
* Get CSS for icons as content
|
|
*/
|
|
declare function getIconsContentCSS(iconSet: IconifyJSON, names: string[], options: IconContentIconSetOptions): string;
|
|
export { getIconsCSS, getIconsCSSData, getIconsContentCSS }; |