jaml-ui 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunks/{ui-Dn8IIoV3.js → ui-B6Oq-jPj.js} +425 -554
- package/dist/chunks/ui-B6Oq-jPj.js.map +1 -0
- package/dist/index.d.ts +0 -1
- package/dist/index.js +1912 -1912
- package/dist/index.js.map +1 -1
- package/dist/ui.d.ts +0 -1
- package/dist/ui.js +3 -3
- package/package.json +1 -1
- package/dist/chunks/ui-Dn8IIoV3.js.map +0 -1
- package/dist/ui/showcase.d.ts +0 -38
package/dist/ui/showcase.d.ts
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { JimboSectionTone } from './jimboSectionHeader.js';
|
|
2
|
-
export interface ShowcaseFilter {
|
|
3
|
-
name: string;
|
|
4
|
-
author: string;
|
|
5
|
-
hits: string;
|
|
6
|
-
tone: JimboSectionTone;
|
|
7
|
-
sample: string[];
|
|
8
|
-
}
|
|
9
|
-
export interface ShowcaseRecentFind {
|
|
10
|
-
seed: string;
|
|
11
|
-
filterName: string;
|
|
12
|
-
score: number;
|
|
13
|
-
}
|
|
14
|
-
export interface ShowcaseLiveStats {
|
|
15
|
-
searched: string;
|
|
16
|
-
matches: string;
|
|
17
|
-
speed: string;
|
|
18
|
-
}
|
|
19
|
-
export interface ShowcaseMcpInfo {
|
|
20
|
-
runtime: string;
|
|
21
|
-
engine: string;
|
|
22
|
-
features: string;
|
|
23
|
-
}
|
|
24
|
-
export interface ShowcaseProps {
|
|
25
|
-
title?: string;
|
|
26
|
-
subtitle?: string;
|
|
27
|
-
hotFilters?: ShowcaseFilter[];
|
|
28
|
-
recentFinds?: ShowcaseRecentFind[];
|
|
29
|
-
mcpInfo?: ShowcaseMcpInfo;
|
|
30
|
-
onNewSearch?: () => void;
|
|
31
|
-
onBrowseFilters?: () => void;
|
|
32
|
-
onFilterClick?: (filter: ShowcaseFilter, index: number) => void;
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
* Landing/showcase screen — 320×568, NO SCROLL.
|
|
36
|
-
* Every pixel accounted for. No flex stretching. No gaps.
|
|
37
|
-
*/
|
|
38
|
-
export declare function Showcase({ title, subtitle, hotFilters, recentFinds, mcpInfo, onNewSearch, onBrowseFilters, onFilterClick, }: ShowcaseProps): import("react/jsx-runtime").JSX.Element;
|