()
| 2557 | } |
| 2558 | |
| 2559 | async function exportAllIconsU8g2Xbm() { |
| 2560 | if (!FILE_ICONS.length) { |
| 2561 | setIconHint("No icons loaded. Check your icon manifest."); |
| 2562 | return; |
| 2563 | } |
| 2564 | if (document.documentElement.dataset.displaykitApi === "1") { |
| 2565 | try { |
| 2566 | await exportAllIconsViaServer("u8g2_xbm"); |
| 2567 | return; |
| 2568 | } catch (e) { |
| 2569 | console.warn("Server U8g2 icon export failed, using browser:", e); |
| 2570 | setIconHint("Server export failed — using browser."); |
| 2571 | } |
| 2572 | } |
| 2573 | await exportAllIconsU8g2XbmClient(); |
| 2574 | } |
| 2575 | |
| 2576 | let uiExamplesActiveTab = "tft"; // "tft" | "oled" |
| 2577 | const UI_EXAMPLES_PER_PAGE = 3; |
no test coverage detected