- 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
17 lines
No EOL
822 B
TypeScript
17 lines
No EOL
822 B
TypeScript
import { IconCSSCommonCodeOptions, IconCSSItemOptions, IconContentItemOptions } from "./types.js";
|
|
import { IconifyIcon } from "@iconify/types";
|
|
/**
|
|
* Generates common CSS rules for multiple icons, rendered as background/mask
|
|
*/
|
|
declare function getCommonCSSRules(options: IconCSSCommonCodeOptions): Record<string, string>;
|
|
/**
|
|
* Generate CSS rules for one icon, rendered as background/mask
|
|
*
|
|
* This function excludes common rules
|
|
*/
|
|
declare function generateItemCSSRules(icon: Required<IconifyIcon>, options: IconCSSItemOptions): Record<string, string>;
|
|
/**
|
|
* Generate content for one icon, rendered as content of pseudo-selector
|
|
*/
|
|
declare function generateItemContent(icon: Required<IconifyIcon>, options: IconContentItemOptions): string;
|
|
export { generateItemCSSRules, generateItemContent, getCommonCSSRules }; |