@promptui-lib/codegen 0.1.0 → 0.1.3

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.
@@ -0,0 +1,61 @@
1
+ /**
2
+ * Component Mappings
3
+ * Maps Figma frame names to framework-specific components
4
+ */
5
+ export interface IComponentMapping {
6
+ /** Bootstrap classes/structure */
7
+ bootstrap: {
8
+ tag: string;
9
+ classes: string[];
10
+ wrapper?: string;
11
+ children?: string;
12
+ };
13
+ /** MUI component */
14
+ mui: {
15
+ component: string;
16
+ props?: Record<string, string>;
17
+ imports?: string[];
18
+ };
19
+ /** Tailwind classes */
20
+ tailwind: {
21
+ tag: string;
22
+ classes: string[];
23
+ };
24
+ /** React + SCSS (custom implementation) */
25
+ scss: {
26
+ tag: string;
27
+ baseClass: string;
28
+ /** If true, generates animation keyframes */
29
+ hasAnimation?: boolean;
30
+ animationName?: string;
31
+ };
32
+ /** Flutter widget */
33
+ flutter: {
34
+ widget: string;
35
+ props?: Record<string, string>;
36
+ };
37
+ /** SwiftUI view */
38
+ swiftui: {
39
+ view: string;
40
+ modifiers?: string[];
41
+ };
42
+ }
43
+ /**
44
+ * Component mappings by name
45
+ * Key is the component name (without #), case-insensitive matching
46
+ */
47
+ export declare const COMPONENT_MAPPINGS: Record<string, IComponentMapping>;
48
+ /**
49
+ * Get component mapping by name (case-insensitive)
50
+ */
51
+ export declare function getComponentMapping(name: string): IComponentMapping | undefined;
52
+ /**
53
+ * Check if a component name has a mapping
54
+ */
55
+ export declare function hasComponentMapping(name: string): boolean;
56
+ /**
57
+ * Extract component type from name
58
+ * e.g., "#ButtonPrimary" -> "button", "#CardProduct" -> "card"
59
+ */
60
+ export declare function extractComponentType(name: string): string | null;
61
+ //# sourceMappingURL=component-mappings.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"component-mappings.d.ts","sourceRoot":"","sources":["../../src/mappings/component-mappings.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,iBAAiB;IAChC,kCAAkC;IAClC,SAAS,EAAE;QACT,GAAG,EAAE,MAAM,CAAC;QACZ,OAAO,EAAE,MAAM,EAAE,CAAC;QAClB,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;KACnB,CAAC;IACF,oBAAoB;IACpB,GAAG,EAAE;QACH,SAAS,EAAE,MAAM,CAAC;QAClB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QAC/B,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;KACpB,CAAC;IACF,uBAAuB;IACvB,QAAQ,EAAE;QACR,GAAG,EAAE,MAAM,CAAC;QACZ,OAAO,EAAE,MAAM,EAAE,CAAC;KACnB,CAAC;IACF,2CAA2C;IAC3C,IAAI,EAAE;QACJ,GAAG,EAAE,MAAM,CAAC;QACZ,SAAS,EAAE,MAAM,CAAC;QAClB,6CAA6C;QAC7C,YAAY,CAAC,EAAE,OAAO,CAAC;QACvB,aAAa,CAAC,EAAE,MAAM,CAAC;KACxB,CAAC;IACF,qBAAqB;IACrB,OAAO,EAAE;QACP,MAAM,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;KAChC,CAAC;IACF,mBAAmB;IACnB,OAAO,EAAE;QACP,IAAI,EAAE,MAAM,CAAC;QACb,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;KACtB,CAAC;CACH;AAED;;;GAGG;AACH,eAAO,MAAM,kBAAkB,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAwkChE,CAAC;AAEF;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,MAAM,GAAG,iBAAiB,GAAG,SAAS,CAG/E;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAEzD;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAYhE"}