@seed-design/figma 0.0.0-alpha-20260324091316
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/lib/codegen/index.cjs +23543 -0
- package/lib/codegen/index.d.ts +2957 -0
- package/lib/codegen/index.d.ts.map +1 -0
- package/lib/codegen/index.js +23514 -0
- package/lib/codegen/targets/react/index.cjs +31980 -0
- package/lib/codegen/targets/react/index.d.ts +308 -0
- package/lib/codegen/targets/react/index.d.ts.map +1 -0
- package/lib/codegen/targets/react/index.js +31961 -0
- package/lib/index.cjs +26905 -0
- package/lib/index.d.ts +221 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +26884 -0
- package/package.json +56 -0
- package/src/codegen/component-properties.archive.ts +1019 -0
- package/src/codegen/component-properties.ts +369 -0
- package/src/codegen/core/codegen.ts +112 -0
- package/src/codegen/core/component-handler.ts +23 -0
- package/src/codegen/core/component-type-helper.ts +35 -0
- package/src/codegen/core/element-transformer.ts +13 -0
- package/src/codegen/core/index.ts +19 -0
- package/src/codegen/core/infer-layout.test.ts +286 -0
- package/src/codegen/core/infer-layout.ts +416 -0
- package/src/codegen/core/jsx.ts +174 -0
- package/src/codegen/core/props-converter.ts +78 -0
- package/src/codegen/core/value-resolver.ts +381 -0
- package/src/codegen/default-services.ts +44 -0
- package/src/codegen/index.ts +3 -0
- package/src/codegen/skip-components.ts +7 -0
- package/src/codegen/targets/figma/frame.ts +38 -0
- package/src/codegen/targets/figma/index.ts +6 -0
- package/src/codegen/targets/figma/instance.ts +36 -0
- package/src/codegen/targets/figma/pipeline.ts +106 -0
- package/src/codegen/targets/figma/props.ts +262 -0
- package/src/codegen/targets/figma/shape.ts +65 -0
- package/src/codegen/targets/figma/text.ts +30 -0
- package/src/codegen/targets/figma/value-resolver.ts +75 -0
- package/src/codegen/targets/index.ts +2 -0
- package/src/codegen/targets/react/component/deps.interface.ts +7 -0
- package/src/codegen/targets/react/component/handlers/action-button.ts +149 -0
- package/src/codegen/targets/react/component/handlers/alert-dialog.ts +120 -0
- package/src/codegen/targets/react/component/handlers/app-bar.ts +169 -0
- package/src/codegen/targets/react/component/handlers/archive/action-button.ts +144 -0
- package/src/codegen/targets/react/component/handlers/archive/alert-dialog.ts +122 -0
- package/src/codegen/targets/react/component/handlers/archive/app-bar.ts +149 -0
- package/src/codegen/targets/react/component/handlers/archive/avatar-stack.ts +35 -0
- package/src/codegen/targets/react/component/handlers/archive/avatar.ts +55 -0
- package/src/codegen/targets/react/component/handlers/archive/badge.ts +18 -0
- package/src/codegen/targets/react/component/handlers/archive/bottom-sheet.ts +70 -0
- package/src/codegen/targets/react/component/handlers/archive/callout.ts +88 -0
- package/src/codegen/targets/react/component/handlers/archive/checkbox.ts +43 -0
- package/src/codegen/targets/react/component/handlers/archive/checkmark.ts +29 -0
- package/src/codegen/targets/react/component/handlers/archive/chip.ts +90 -0
- package/src/codegen/targets/react/component/handlers/archive/contextual-floating-button.ts +52 -0
- package/src/codegen/targets/react/component/handlers/archive/divider.ts +25 -0
- package/src/codegen/targets/react/component/handlers/archive/field-button.ts +197 -0
- package/src/codegen/targets/react/component/handlers/archive/field.ts +167 -0
- package/src/codegen/targets/react/component/handlers/archive/floating-action-button.ts +48 -0
- package/src/codegen/targets/react/component/handlers/archive/help-bubble.ts +73 -0
- package/src/codegen/targets/react/component/handlers/archive/identity-placeholder.ts +21 -0
- package/src/codegen/targets/react/component/handlers/archive/index.ts +40 -0
- package/src/codegen/targets/react/component/handlers/archive/legacy-select-box.ts +89 -0
- package/src/codegen/targets/react/component/handlers/archive/legacy-text-field.ts +198 -0
- package/src/codegen/targets/react/component/handlers/archive/list-header.ts +20 -0
- package/src/codegen/targets/react/component/handlers/archive/list-item.ts +162 -0
- package/src/codegen/targets/react/component/handlers/archive/manner-temp-badge.ts +21 -0
- package/src/codegen/targets/react/component/handlers/archive/manner-temp.ts +18 -0
- package/src/codegen/targets/react/component/handlers/archive/menu-sheet.ts +108 -0
- package/src/codegen/targets/react/component/handlers/archive/page-banner.ts +101 -0
- package/src/codegen/targets/react/component/handlers/archive/progress-circle.ts +55 -0
- package/src/codegen/targets/react/component/handlers/archive/radio-group.ts +31 -0
- package/src/codegen/targets/react/component/handlers/archive/radiomark.ts +27 -0
- package/src/codegen/targets/react/component/handlers/archive/reaction-button.ts +37 -0
- package/src/codegen/targets/react/component/handlers/archive/result-section.ts +67 -0
- package/src/codegen/targets/react/component/handlers/archive/segmented-control.ts +64 -0
- package/src/codegen/targets/react/component/handlers/archive/skeleton.ts +26 -0
- package/src/codegen/targets/react/component/handlers/archive/slider.ts +114 -0
- package/src/codegen/targets/react/component/handlers/archive/snackbar.ts +25 -0
- package/src/codegen/targets/react/component/handlers/archive/switch.ts +39 -0
- package/src/codegen/targets/react/component/handlers/archive/switchmark.ts +26 -0
- package/src/codegen/targets/react/component/handlers/archive/tabs.ts +297 -0
- package/src/codegen/targets/react/component/handlers/archive/tag-group.ts +86 -0
- package/src/codegen/targets/react/component/handlers/archive/text-field.ts +264 -0
- package/src/codegen/targets/react/component/handlers/archive/toggle-button.ts +43 -0
- package/src/codegen/targets/react/component/handlers/avatar-stack.ts +38 -0
- package/src/codegen/targets/react/component/handlers/avatar.ts +58 -0
- package/src/codegen/targets/react/component/handlers/badge.ts +18 -0
- package/src/codegen/targets/react/component/handlers/bottom-sheet.ts +74 -0
- package/src/codegen/targets/react/component/handlers/callout.ts +88 -0
- package/src/codegen/targets/react/component/handlers/checkbox.ts +129 -0
- package/src/codegen/targets/react/component/handlers/checkmark.ts +29 -0
- package/src/codegen/targets/react/component/handlers/chip.ts +93 -0
- package/src/codegen/targets/react/component/handlers/content-placeholder.ts +20 -0
- package/src/codegen/targets/react/component/handlers/contextual-floating-button.ts +52 -0
- package/src/codegen/targets/react/component/handlers/divider.ts +25 -0
- package/src/codegen/targets/react/component/handlers/field-button.ts +192 -0
- package/src/codegen/targets/react/component/handlers/field.ts +164 -0
- package/src/codegen/targets/react/component/handlers/floating-action-button.ts +45 -0
- package/src/codegen/targets/react/component/handlers/help-bubble.ts +73 -0
- package/src/codegen/targets/react/component/handlers/identity-placeholder.ts +20 -0
- package/src/codegen/targets/react/component/handlers/image-frame.ts +147 -0
- package/src/codegen/targets/react/component/handlers/index.ts +43 -0
- package/src/codegen/targets/react/component/handlers/legacy-select-box.ts +87 -0
- package/src/codegen/targets/react/component/handlers/legacy-text-field.ts +196 -0
- package/src/codegen/targets/react/component/handlers/list-header.ts +20 -0
- package/src/codegen/targets/react/component/handlers/list-item.ts +163 -0
- package/src/codegen/targets/react/component/handlers/manner-temp-badge.ts +21 -0
- package/src/codegen/targets/react/component/handlers/manner-temp.ts +18 -0
- package/src/codegen/targets/react/component/handlers/menu-sheet.ts +111 -0
- package/src/codegen/targets/react/component/handlers/page-banner.ts +106 -0
- package/src/codegen/targets/react/component/handlers/progress-circle.ts +55 -0
- package/src/codegen/targets/react/component/handlers/radio-group.ts +109 -0
- package/src/codegen/targets/react/component/handlers/radiomark.ts +27 -0
- package/src/codegen/targets/react/component/handlers/reaction-button.ts +37 -0
- package/src/codegen/targets/react/component/handlers/result-section.ts +67 -0
- package/src/codegen/targets/react/component/handlers/segmented-control.ts +63 -0
- package/src/codegen/targets/react/component/handlers/select-box.ts +333 -0
- package/src/codegen/targets/react/component/handlers/skeleton.ts +26 -0
- package/src/codegen/targets/react/component/handlers/slider.ts +117 -0
- package/src/codegen/targets/react/component/handlers/snackbar.ts +25 -0
- package/src/codegen/targets/react/component/handlers/switch.ts +35 -0
- package/src/codegen/targets/react/component/handlers/switchmark.ts +26 -0
- package/src/codegen/targets/react/component/handlers/tabs.ts +298 -0
- package/src/codegen/targets/react/component/handlers/tag-group.ts +90 -0
- package/src/codegen/targets/react/component/handlers/text-field.ts +253 -0
- package/src/codegen/targets/react/component/handlers/toggle-button.ts +43 -0
- package/src/codegen/targets/react/component/index.ts +24 -0
- package/src/codegen/targets/react/component/size.ts +22 -0
- package/src/codegen/targets/react/element-factories.ts +59 -0
- package/src/codegen/targets/react/frame.ts +96 -0
- package/src/codegen/targets/react/icon.ts +55 -0
- package/src/codegen/targets/react/index.ts +7 -0
- package/src/codegen/targets/react/instance.ts +82 -0
- package/src/codegen/targets/react/pipeline.ts +133 -0
- package/src/codegen/targets/react/props.ts +417 -0
- package/src/codegen/targets/react/shape.ts +47 -0
- package/src/codegen/targets/react/text.ts +31 -0
- package/src/codegen/targets/react/value-resolver.ts +93 -0
- package/src/entities/component.interface.ts +7 -0
- package/src/entities/component.repository.ts +16 -0
- package/src/entities/data/__generated__/archive/component-sets/index.d.ts +2074 -0
- package/src/entities/data/__generated__/archive/component-sets/index.mjs +2074 -0
- package/src/entities/data/__generated__/archive/components/index.d.ts +116 -0
- package/src/entities/data/__generated__/archive/components/index.mjs +116 -0
- package/src/entities/data/__generated__/archive/styles/index.d.ts +3 -0
- package/src/entities/data/__generated__/archive/styles/index.mjs +429 -0
- package/src/entities/data/__generated__/archive/variable-collections/index.d.ts +3 -0
- package/src/entities/data/__generated__/archive/variable-collections/index.mjs +501 -0
- package/src/entities/data/__generated__/archive/variables/index.d.ts +3 -0
- package/src/entities/data/__generated__/archive/variables/index.mjs +7019 -0
- package/src/entities/data/__generated__/component-sets/index.d.ts +4325 -0
- package/src/entities/data/__generated__/component-sets/index.mjs +4325 -0
- package/src/entities/data/__generated__/components/index.d.ts +378 -0
- package/src/entities/data/__generated__/components/index.mjs +378 -0
- package/src/entities/data/__generated__/icons/index.d.ts +3 -0
- package/src/entities/data/__generated__/icons/index.mjs +3476 -0
- package/src/entities/data/__generated__/styles/index.d.ts +3 -0
- package/src/entities/data/__generated__/styles/index.mjs +436 -0
- package/src/entities/data/__generated__/variable-collections/index.d.ts +3 -0
- package/src/entities/data/__generated__/variable-collections/index.mjs +479 -0
- package/src/entities/data/__generated__/variables/index.d.ts +3 -0
- package/src/entities/data/__generated__/variables/index.mjs +6969 -0
- package/src/entities/icon.interface.ts +5 -0
- package/src/entities/icon.repository.ts +11 -0
- package/src/entities/icon.service.ts +26 -0
- package/src/entities/index.ts +60 -0
- package/src/entities/style.interface.ts +5 -0
- package/src/entities/style.repository.ts +27 -0
- package/src/entities/style.service.ts +36 -0
- package/src/entities/variable.interface.ts +18 -0
- package/src/entities/variable.repository.ts +57 -0
- package/src/entities/variable.service.ts +101 -0
- package/src/index.ts +3 -0
- package/src/normalizer/from-plugin.ts +602 -0
- package/src/normalizer/from-rest.ts +577 -0
- package/src/normalizer/index.ts +3 -0
- package/src/normalizer/types.ts +208 -0
- package/src/utils/common.ts +38 -0
- package/src/utils/css.ts +19 -0
- package/src/utils/figma-gradient.ts +72 -0
- package/src/utils/figma-node.ts +95 -0
- package/src/utils/figma-variable.ts +49 -0
|
@@ -0,0 +1,2957 @@
|
|
|
1
|
+
import * as FigmaRestSpec from '@figma/rest-api-spec';
|
|
2
|
+
import { ComponentPropertyType, InstanceSwapPreferredValue, LocalVariable, VariableAlias as VariableAlias$1, VariableScope, RGBA } from '@figma/rest-api-spec';
|
|
3
|
+
import * as index_d_ts from './targets/react/index.js';
|
|
4
|
+
export { index_d_ts as react };
|
|
5
|
+
|
|
6
|
+
type NormalizedIsLayerTrait = Pick<FigmaRestSpec.IsLayerTrait, "type" | "id" | "name"> & {
|
|
7
|
+
boundVariables?: Pick<NonNullable<FigmaRestSpec.IsLayerTrait["boundVariables"]>, "fills" | "strokes" | "itemSpacing" | "counterAxisSpacing" | "bottomLeftRadius" | "bottomRightRadius" | "topLeftRadius" | "topRightRadius" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "maxHeight" | "minHeight" | "maxWidth" | "minWidth" | "fontSize" | "fontWeight" | "lineHeight" | "size">;
|
|
8
|
+
};
|
|
9
|
+
type NormalizedCornerTrait = Pick<FigmaRestSpec.CornerTrait, "cornerRadius" | "rectangleCornerRadii">;
|
|
10
|
+
type NormalizedHasChildrenTrait = {
|
|
11
|
+
children: NormalizedSceneNode[];
|
|
12
|
+
};
|
|
13
|
+
type NormalizedHasLayoutTrait = Pick<FigmaRestSpec.HasLayoutTrait, "layoutAlign" | "layoutGrow" | "absoluteBoundingBox" | "relativeTransform" | "layoutPositioning" | "layoutSizingHorizontal" | "layoutSizingVertical" | "minHeight" | "minWidth" | "maxHeight" | "maxWidth">;
|
|
14
|
+
type NormalizedSolidPaint = FigmaRestSpec.SolidPaint;
|
|
15
|
+
type NormalizedPaint = NormalizedSolidPaint | FigmaRestSpec.GradientPaint | FigmaRestSpec.ImagePaint;
|
|
16
|
+
type NormalizedHasGeometryTrait = Omit<Pick<FigmaRestSpec.HasGeometryTrait, "fills" | "strokes" | "strokeWeight">, "fills" | "strokes"> & {
|
|
17
|
+
fills: NormalizedPaint[];
|
|
18
|
+
strokes: NormalizedPaint[];
|
|
19
|
+
fillStyleKey?: string;
|
|
20
|
+
};
|
|
21
|
+
type NormalizedShadow = (Pick<FigmaRestSpec.DropShadowEffect, "color" | "offset" | "radius" | "spread" | "boundVariables"> & Required<Pick<FigmaRestSpec.DropShadowEffect, "type">>) | (Pick<FigmaRestSpec.InnerShadowEffect, "color" | "offset" | "radius" | "spread" | "boundVariables"> & Required<Pick<FigmaRestSpec.InnerShadowEffect, "type">>);
|
|
22
|
+
type NormalizedHasEffectsTrait = Omit<FigmaRestSpec.HasEffectsTrait, "effects"> & {
|
|
23
|
+
effects: NormalizedShadow[];
|
|
24
|
+
effectStyleKey?: string;
|
|
25
|
+
};
|
|
26
|
+
type NormalizedHasFramePropertiesTrait = Pick<FigmaRestSpec.HasFramePropertiesTrait, "layoutMode" | "layoutWrap" | "paddingLeft" | "paddingRight" | "paddingTop" | "paddingBottom" | "primaryAxisAlignItems" | "primaryAxisSizingMode" | "counterAxisAlignItems" | "counterAxisSizingMode" | "itemSpacing" | "counterAxisSpacing">;
|
|
27
|
+
interface NormalizedTextSegment {
|
|
28
|
+
characters: string;
|
|
29
|
+
start: number;
|
|
30
|
+
end: number;
|
|
31
|
+
style: {
|
|
32
|
+
fontFamily?: string;
|
|
33
|
+
fontWeight?: number;
|
|
34
|
+
fontSize?: number;
|
|
35
|
+
italic?: boolean;
|
|
36
|
+
textDecoration?: string;
|
|
37
|
+
letterSpacing?: number;
|
|
38
|
+
/**
|
|
39
|
+
* in pixels
|
|
40
|
+
*/
|
|
41
|
+
lineHeight?: number;
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
type NormalizedTypePropertiesTrait = Pick<FigmaRestSpec.TypePropertiesTrait, "style" | "characters"> & {
|
|
45
|
+
segments: NormalizedTextSegment[];
|
|
46
|
+
textStyleKey?: string;
|
|
47
|
+
};
|
|
48
|
+
type NormalizedDefaultShapeTrait = NormalizedIsLayerTrait & NormalizedHasLayoutTrait & NormalizedHasGeometryTrait & NormalizedHasEffectsTrait;
|
|
49
|
+
type NormalizedFrameTrait = NormalizedIsLayerTrait & NormalizedHasLayoutTrait & NormalizedHasGeometryTrait & NormalizedHasEffectsTrait & NormalizedHasChildrenTrait & NormalizedCornerTrait & NormalizedHasFramePropertiesTrait;
|
|
50
|
+
interface NormalizedFrameNode extends NormalizedFrameTrait {
|
|
51
|
+
type: FigmaRestSpec.FrameNode["type"];
|
|
52
|
+
}
|
|
53
|
+
interface NormalizedRectangleNode extends NormalizedDefaultShapeTrait, NormalizedCornerTrait {
|
|
54
|
+
type: FigmaRestSpec.RectangleNode["type"];
|
|
55
|
+
}
|
|
56
|
+
interface NormalizedTextNode extends NormalizedDefaultShapeTrait, NormalizedTypePropertiesTrait {
|
|
57
|
+
type: FigmaRestSpec.TextNode["type"];
|
|
58
|
+
}
|
|
59
|
+
interface NormalizedComponentNode extends NormalizedFrameTrait {
|
|
60
|
+
type: FigmaRestSpec.ComponentNode["type"];
|
|
61
|
+
}
|
|
62
|
+
interface NormalizedInstanceNode extends NormalizedFrameTrait {
|
|
63
|
+
type: FigmaRestSpec.InstanceNode["type"];
|
|
64
|
+
componentProperties: {
|
|
65
|
+
[key: string]: FigmaRestSpec.ComponentProperty & {
|
|
66
|
+
componentKey?: string;
|
|
67
|
+
componentSetKey?: string;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
componentKey: string;
|
|
71
|
+
componentSetKey?: string;
|
|
72
|
+
overrides?: FigmaRestSpec.InstanceNode["overrides"];
|
|
73
|
+
children: NormalizedSceneNode[];
|
|
74
|
+
}
|
|
75
|
+
interface NormalizedVectorNode extends NormalizedDefaultShapeTrait, NormalizedCornerTrait {
|
|
76
|
+
type: FigmaRestSpec.VectorNode["type"];
|
|
77
|
+
}
|
|
78
|
+
interface NormalizedBooleanOperationNode extends NormalizedIsLayerTrait, NormalizedHasChildrenTrait, NormalizedHasLayoutTrait, NormalizedHasGeometryTrait, NormalizedHasEffectsTrait {
|
|
79
|
+
type: FigmaRestSpec.BooleanOperationNode["type"];
|
|
80
|
+
}
|
|
81
|
+
interface NormalizedUnhandledNode {
|
|
82
|
+
type: "UNHANDLED";
|
|
83
|
+
id: string;
|
|
84
|
+
original: FigmaRestSpec.Node | SceneNode;
|
|
85
|
+
}
|
|
86
|
+
type NormalizedSceneNode = NormalizedFrameNode | NormalizedRectangleNode | NormalizedTextNode | NormalizedComponentNode | NormalizedInstanceNode | NormalizedVectorNode | NormalizedBooleanOperationNode | NormalizedUnhandledNode;
|
|
87
|
+
|
|
88
|
+
interface ElementNode {
|
|
89
|
+
__IS_JSX_ELEMENT_NODE: true;
|
|
90
|
+
tag: string;
|
|
91
|
+
props: Record<string, string | number | boolean | ElementNode | object | undefined>;
|
|
92
|
+
children: (ElementNode | string)[];
|
|
93
|
+
meta: {
|
|
94
|
+
comment?: string;
|
|
95
|
+
source?: string;
|
|
96
|
+
importPath?: string;
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
declare function createElement(tag: string, props?: Record<string, string | number | boolean | object | undefined>, children?: ElementNode | string | undefined | (ElementNode | string | undefined)[], meta?: ElementNode["meta"]): ElementNode;
|
|
100
|
+
declare function cloneElement(element: ElementNode, props?: Record<string, string | number | boolean | object | undefined>, children?: ElementNode | string | undefined | (ElementNode | string | undefined)[]): {
|
|
101
|
+
props: {
|
|
102
|
+
[x: string]: string | number | boolean | object | ElementNode | undefined;
|
|
103
|
+
};
|
|
104
|
+
children: (string | ElementNode)[];
|
|
105
|
+
__IS_JSX_ELEMENT_NODE: true;
|
|
106
|
+
tag: string;
|
|
107
|
+
meta: {
|
|
108
|
+
comment?: string;
|
|
109
|
+
source?: string;
|
|
110
|
+
importPath?: string;
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
type ElementTransformer<T extends NormalizedSceneNode> = (node: T, traverse: (node: NormalizedSceneNode) => ElementNode | undefined) => ElementNode | undefined;
|
|
115
|
+
declare function defineElementTransformer<T extends NormalizedSceneNode>(transformer: ElementTransformer<T>): ElementTransformer<T>;
|
|
116
|
+
|
|
117
|
+
interface CodeGeneratorDeps {
|
|
118
|
+
frameTransformer: ElementTransformer<NormalizedFrameNode | NormalizedComponentNode | NormalizedInstanceNode>;
|
|
119
|
+
textTransformer: ElementTransformer<NormalizedTextNode>;
|
|
120
|
+
rectangleTransformer: ElementTransformer<NormalizedRectangleNode>;
|
|
121
|
+
instanceTransformer: ElementTransformer<NormalizedInstanceNode>;
|
|
122
|
+
vectorTransformer: ElementTransformer<NormalizedVectorNode>;
|
|
123
|
+
booleanOperationTransformer: ElementTransformer<NormalizedBooleanOperationNode>;
|
|
124
|
+
shouldInferAutoLayout: boolean;
|
|
125
|
+
skipComponentKeys?: Set<string>;
|
|
126
|
+
}
|
|
127
|
+
interface CodeGenerator {
|
|
128
|
+
generateJsxTree: (node: NormalizedSceneNode) => ElementNode | undefined;
|
|
129
|
+
generateCode: (node: NormalizedSceneNode, options: {
|
|
130
|
+
shouldPrintSource: boolean;
|
|
131
|
+
}) => {
|
|
132
|
+
imports: string;
|
|
133
|
+
jsx: string;
|
|
134
|
+
} | undefined;
|
|
135
|
+
}
|
|
136
|
+
declare function createCodeGenerator({ frameTransformer, textTransformer, rectangleTransformer, instanceTransformer, vectorTransformer, booleanOperationTransformer, shouldInferAutoLayout, skipComponentKeys, }: CodeGeneratorDeps): CodeGenerator;
|
|
137
|
+
|
|
138
|
+
interface ComponentHandler<T extends NormalizedInstanceNode["componentProperties"] = NormalizedInstanceNode["componentProperties"]> {
|
|
139
|
+
key: string;
|
|
140
|
+
transform: (node: Omit<NormalizedInstanceNode, "componentProperties"> & {
|
|
141
|
+
componentProperties: T;
|
|
142
|
+
}, traverse: (node: NormalizedSceneNode) => ElementNode | undefined) => ElementNode;
|
|
143
|
+
}
|
|
144
|
+
declare function defineComponentHandler<T extends NormalizedInstanceNode["componentProperties"]>(key: string, transform: (node: Omit<NormalizedInstanceNode, "componentProperties"> & {
|
|
145
|
+
componentProperties: T;
|
|
146
|
+
}, traverse: (node: NormalizedSceneNode) => ElementNode | undefined) => ElementNode): ComponentHandler<T>;
|
|
147
|
+
|
|
148
|
+
interface ComponentPropertyDefinition {
|
|
149
|
+
type: ComponentPropertyType;
|
|
150
|
+
preferredValues?: InstanceSwapPreferredValue[];
|
|
151
|
+
variantOptions?: string[];
|
|
152
|
+
}
|
|
153
|
+
type InferComponentPropertyType<T extends ComponentPropertyDefinition> = T["type"] extends "TEXT" ? string : T["type"] extends "BOOLEAN" ? boolean : T["type"] extends "INSTANCE_SWAP" ? string : T["type"] extends "VARIANT" ? T["variantOptions"] extends string[] ? T["variantOptions"][number] : never : never;
|
|
154
|
+
type InferComponentDefinition<T extends Record<string, ComponentPropertyDefinition>> = {
|
|
155
|
+
[K in keyof T]: {
|
|
156
|
+
type: T[K]["type"];
|
|
157
|
+
value: InferComponentPropertyType<T[K]>;
|
|
158
|
+
readonly boundVariables?: {
|
|
159
|
+
[field in VariableBindableComponentPropertyField]?: VariableAlias;
|
|
160
|
+
};
|
|
161
|
+
} & (T[K]["type"] extends "INSTANCE_SWAP" ? {
|
|
162
|
+
componentKey: string;
|
|
163
|
+
preferredValues: InstanceSwapPreferredValue[];
|
|
164
|
+
} : {});
|
|
165
|
+
};
|
|
166
|
+
|
|
167
|
+
interface ComponentMetadata {
|
|
168
|
+
name: string;
|
|
169
|
+
key: string;
|
|
170
|
+
componentPropertyDefinitions: Record<string, ComponentPropertyDefinition>;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
type Variable = LocalVariable;
|
|
174
|
+
type VariableValue = Variable["valuesByMode"][string];
|
|
175
|
+
type VariableValueResolved = Exclude<VariableValue, VariableAlias$1>;
|
|
176
|
+
|
|
177
|
+
interface StyleService {
|
|
178
|
+
getSlug: (id: string) => string[] | undefined;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
interface VariableService {
|
|
182
|
+
getSlug: (id: string) => string[] | undefined;
|
|
183
|
+
resolveValue: (variable: Variable, mode: string) => VariableValueResolved;
|
|
184
|
+
infer: (value: VariableValueResolved, scope: VariableScope) => Variable | undefined;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
interface ComponentRepository {
|
|
188
|
+
getOne(key: string): ComponentMetadata | undefined;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
type PropsConverter<T extends Record<string, any> = Record<string, any>, R extends Record<string, any> = Record<string, any>> = (node: T) => R;
|
|
192
|
+
declare function definePropsConverter<T extends Record<string, any>, R extends Record<string, any>>(converter: PropsConverter<T, R>): PropsConverter<T, R>;
|
|
193
|
+
type Handlers<TTrait extends Record<string, VariableValueResolved>, TProps extends Record<string, any>, HandlerKeys extends keyof TProps = keyof TProps> = {
|
|
194
|
+
[K in HandlerKeys]: (node: TTrait) => TProps[K];
|
|
195
|
+
};
|
|
196
|
+
type Shorthands<TProps extends Record<string, any>, HandlerKeys extends keyof TProps> = Record<Exclude<keyof TProps, HandlerKeys>, HandlerKeys[]>;
|
|
197
|
+
interface CreatePropsConverterConfig<TTrait extends Record<string, any>, TProps extends Record<string, any>, HandlerKeys extends keyof TProps> {
|
|
198
|
+
_types: {
|
|
199
|
+
trait: TTrait;
|
|
200
|
+
props: TProps;
|
|
201
|
+
};
|
|
202
|
+
handlers: Handlers<TTrait, TProps, HandlerKeys>;
|
|
203
|
+
shorthands?: Shorthands<TProps, HandlerKeys>;
|
|
204
|
+
defaults?: Partial<TProps>;
|
|
205
|
+
}
|
|
206
|
+
declare function createPropsConverter<TTrait extends Record<string, any>, TProps extends Record<string, any>, HandlerKeys extends keyof TProps>({ handlers, shorthands, defaults, }: CreatePropsConverterConfig<TTrait, TProps, HandlerKeys>): PropsConverter<TTrait, TProps>;
|
|
207
|
+
|
|
208
|
+
interface ValueResolver<TColor, TGradient, TDimension, TFontDimension, TFontWeight> {
|
|
209
|
+
getFormattedValue: {
|
|
210
|
+
frameFill: (node: NormalizedHasGeometryTrait & NormalizedIsLayerTrait) => string | TColor | TGradient | undefined;
|
|
211
|
+
shapeFill: (node: NormalizedHasGeometryTrait & NormalizedIsLayerTrait) => string | TColor | undefined;
|
|
212
|
+
textFill: (node: NormalizedHasGeometryTrait & NormalizedIsLayerTrait) => string | TColor | undefined;
|
|
213
|
+
stroke: (node: NormalizedHasGeometryTrait & NormalizedIsLayerTrait) => string | TColor | undefined;
|
|
214
|
+
width: (node: NormalizedHasLayoutTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
215
|
+
height: (node: NormalizedHasLayoutTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
216
|
+
minWidth: (node: NormalizedHasLayoutTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
217
|
+
minHeight: (node: NormalizedHasLayoutTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
218
|
+
maxWidth: (node: NormalizedHasLayoutTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
219
|
+
maxHeight: (node: NormalizedHasLayoutTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
220
|
+
paddingLeft: (node: NormalizedHasFramePropertiesTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
221
|
+
paddingRight: (node: NormalizedHasFramePropertiesTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
222
|
+
paddingTop: (node: NormalizedHasFramePropertiesTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
223
|
+
paddingBottom: (node: NormalizedHasFramePropertiesTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
224
|
+
itemSpacing: (node: NormalizedHasFramePropertiesTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
225
|
+
counterAxisSpacing: (node: NormalizedHasFramePropertiesTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
226
|
+
topLeftRadius: (node: NormalizedCornerTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
227
|
+
topRightRadius: (node: NormalizedCornerTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
228
|
+
bottomLeftRadius: (node: NormalizedCornerTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
229
|
+
bottomRightRadius: (node: NormalizedCornerTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
230
|
+
fontSize: (node: NormalizedTypePropertiesTrait & NormalizedIsLayerTrait) => string | TFontDimension | undefined;
|
|
231
|
+
fontWeight: (node: NormalizedTypePropertiesTrait & NormalizedIsLayerTrait) => string | TFontWeight | undefined;
|
|
232
|
+
lineHeight: (node: NormalizedTypePropertiesTrait & NormalizedIsLayerTrait) => string | TFontDimension | undefined;
|
|
233
|
+
boxShadow: (node: NormalizedHasEffectsTrait & NormalizedIsLayerTrait) => string | undefined;
|
|
234
|
+
};
|
|
235
|
+
getTextStyleValue: (node: NormalizedTypePropertiesTrait & NormalizedIsLayerTrait) => string | undefined;
|
|
236
|
+
getEffectStyleValue: (node: NormalizedHasEffectsTrait & NormalizedIsLayerTrait) => string | undefined;
|
|
237
|
+
}
|
|
238
|
+
interface ValueResolverDeps<TColor, TGradient, TDimension, TFontDimension, TFontWeight> {
|
|
239
|
+
variableService: VariableService;
|
|
240
|
+
variableNameFormatter: (props: {
|
|
241
|
+
slug: string[];
|
|
242
|
+
}) => string;
|
|
243
|
+
styleService: StyleService;
|
|
244
|
+
textStyleNameFormatter: (props: {
|
|
245
|
+
slug: string[];
|
|
246
|
+
}) => string;
|
|
247
|
+
effectStyleNameFormatter: (props: {
|
|
248
|
+
slug: string[];
|
|
249
|
+
}) => string;
|
|
250
|
+
fillStyleResolver: (props: {
|
|
251
|
+
slug: string[];
|
|
252
|
+
}) => TGradient | undefined;
|
|
253
|
+
rawValueFormatters: {
|
|
254
|
+
color: (value: RGBA) => string | TColor;
|
|
255
|
+
dimension: (value: number) => string | TDimension;
|
|
256
|
+
fontDimension: (value: number) => string | TFontDimension;
|
|
257
|
+
fontWeight: (value: number) => string | TFontWeight;
|
|
258
|
+
boxShadow: (value: {
|
|
259
|
+
type: "DROP_SHADOW" | "INNER_SHADOW";
|
|
260
|
+
color: RGBA;
|
|
261
|
+
offset: {
|
|
262
|
+
x: number;
|
|
263
|
+
y: number;
|
|
264
|
+
};
|
|
265
|
+
radius: number;
|
|
266
|
+
spread?: number;
|
|
267
|
+
}) => string;
|
|
268
|
+
};
|
|
269
|
+
shouldInferVariableName: boolean;
|
|
270
|
+
}
|
|
271
|
+
declare function createValueResolver<TColor, TGradient, TDimension, TFontDimension, TFontWeight>({ variableService, variableNameFormatter, styleService, textStyleNameFormatter, effectStyleNameFormatter, fillStyleResolver, rawValueFormatters, shouldInferVariableName, }: ValueResolverDeps<TColor, TGradient, TDimension, TFontDimension, TFontWeight>): ValueResolver<TColor, TGradient, TDimension, TFontDimension, TFontWeight>;
|
|
272
|
+
|
|
273
|
+
interface LayoutProperties {
|
|
274
|
+
layoutMode?: "NONE" | "HORIZONTAL" | "VERTICAL";
|
|
275
|
+
primaryAxisSizingMode?: "FIXED" | "AUTO";
|
|
276
|
+
counterAxisSizingMode?: "FIXED" | "AUTO";
|
|
277
|
+
primaryAxisAlignItems?: "MIN" | "CENTER" | "MAX" | "SPACE_BETWEEN";
|
|
278
|
+
counterAxisAlignItems?: "MIN" | "CENTER" | "MAX";
|
|
279
|
+
paddingLeft?: number;
|
|
280
|
+
paddingRight?: number;
|
|
281
|
+
paddingTop?: number;
|
|
282
|
+
paddingBottom?: number;
|
|
283
|
+
itemSpacing?: number;
|
|
284
|
+
}
|
|
285
|
+
interface InferResult {
|
|
286
|
+
properties: LayoutProperties;
|
|
287
|
+
childProperties: {
|
|
288
|
+
[childId: string]: {
|
|
289
|
+
layoutAlign?: "MIN" | "STRETCH";
|
|
290
|
+
};
|
|
291
|
+
};
|
|
292
|
+
}
|
|
293
|
+
type LayoutNode = NormalizedIsLayerTrait & NormalizedHasFramePropertiesTrait & NormalizedHasChildrenTrait & NormalizedHasLayoutTrait;
|
|
294
|
+
declare function inferLayout(parentNode: LayoutNode): InferResult;
|
|
295
|
+
|
|
296
|
+
declare const templateCustomPickerField: {
|
|
297
|
+
"name": "templateCustomPickerField",
|
|
298
|
+
"key": "91d73dfc297a467d78dc91ade6ff9be9a152619e",
|
|
299
|
+
"componentPropertyDefinitions": {
|
|
300
|
+
"Show Header#40606:8": {
|
|
301
|
+
"type": "BOOLEAN"
|
|
302
|
+
},
|
|
303
|
+
"Show Footer#40606:9": {
|
|
304
|
+
"type": "BOOLEAN"
|
|
305
|
+
},
|
|
306
|
+
"State": {
|
|
307
|
+
"type": "VARIANT",
|
|
308
|
+
"variantOptions": [
|
|
309
|
+
"Enabled",
|
|
310
|
+
"Error",
|
|
311
|
+
"Disabled",
|
|
312
|
+
"Read Only"
|
|
313
|
+
]
|
|
314
|
+
},
|
|
315
|
+
"Has Value": {
|
|
316
|
+
"type": "VARIANT",
|
|
317
|
+
"variantOptions": [
|
|
318
|
+
"False",
|
|
319
|
+
"True"
|
|
320
|
+
]
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
};
|
|
324
|
+
|
|
325
|
+
declare const templateSliderField: {
|
|
326
|
+
"name": "templateSliderField",
|
|
327
|
+
"key": "7d2b449bcfb28ebf3c509ed76a141511f7d955eb",
|
|
328
|
+
"componentPropertyDefinitions": {
|
|
329
|
+
"Show Header#40606:8": {
|
|
330
|
+
"type": "BOOLEAN"
|
|
331
|
+
},
|
|
332
|
+
"Show Footer#40606:9": {
|
|
333
|
+
"type": "BOOLEAN"
|
|
334
|
+
},
|
|
335
|
+
"State": {
|
|
336
|
+
"type": "VARIANT",
|
|
337
|
+
"variantOptions": [
|
|
338
|
+
"Enabled",
|
|
339
|
+
"Pressed",
|
|
340
|
+
"Error",
|
|
341
|
+
"Disabled",
|
|
342
|
+
"Read Only"
|
|
343
|
+
]
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
};
|
|
347
|
+
|
|
348
|
+
declare const templateTextField: {
|
|
349
|
+
"name": "templateTextField",
|
|
350
|
+
"key": "0a83a0ff9d18d98a14536b21aa5411622f9f0c05",
|
|
351
|
+
"componentPropertyDefinitions": {
|
|
352
|
+
"Show Header#40606:8": {
|
|
353
|
+
"type": "BOOLEAN"
|
|
354
|
+
},
|
|
355
|
+
"Show Footer#40606:9": {
|
|
356
|
+
"type": "BOOLEAN"
|
|
357
|
+
},
|
|
358
|
+
"Variant": {
|
|
359
|
+
"type": "VARIANT",
|
|
360
|
+
"variantOptions": [
|
|
361
|
+
"Outline",
|
|
362
|
+
"Underline"
|
|
363
|
+
]
|
|
364
|
+
},
|
|
365
|
+
"State": {
|
|
366
|
+
"type": "VARIANT",
|
|
367
|
+
"variantOptions": [
|
|
368
|
+
"Enabled",
|
|
369
|
+
"Focused",
|
|
370
|
+
"Error",
|
|
371
|
+
"Error Focused",
|
|
372
|
+
"Disabled",
|
|
373
|
+
"Read Only",
|
|
374
|
+
"AI Loading (Figma Only)"
|
|
375
|
+
]
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
};
|
|
379
|
+
|
|
380
|
+
declare const templateTextareaField: {
|
|
381
|
+
"name": "templateTextareaField",
|
|
382
|
+
"key": "cdc688eccd78b947289e8089a620bdc494f6c809",
|
|
383
|
+
"componentPropertyDefinitions": {
|
|
384
|
+
"Show Header#40606:8": {
|
|
385
|
+
"type": "BOOLEAN"
|
|
386
|
+
},
|
|
387
|
+
"Show Footer#40606:9": {
|
|
388
|
+
"type": "BOOLEAN"
|
|
389
|
+
},
|
|
390
|
+
"State": {
|
|
391
|
+
"type": "VARIANT",
|
|
392
|
+
"variantOptions": [
|
|
393
|
+
"Enabled",
|
|
394
|
+
"Focused",
|
|
395
|
+
"Error",
|
|
396
|
+
"Error Focused",
|
|
397
|
+
"Disabled",
|
|
398
|
+
"Read Only",
|
|
399
|
+
"AI Loading (Figma Only)"
|
|
400
|
+
]
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
};
|
|
404
|
+
|
|
405
|
+
declare const actionButton: {
|
|
406
|
+
"name": "actionButton",
|
|
407
|
+
"key": "450ede9d0bf42fc6ef14345c77e6e407d6d5ee89",
|
|
408
|
+
"componentPropertyDefinitions": {
|
|
409
|
+
"Label#5987:61": {
|
|
410
|
+
"type": "TEXT"
|
|
411
|
+
},
|
|
412
|
+
"Suffix Icon#5987:244": {
|
|
413
|
+
"type": "INSTANCE_SWAP",
|
|
414
|
+
"preferredValues": []
|
|
415
|
+
},
|
|
416
|
+
"Prefix Icon#5987:305": {
|
|
417
|
+
"type": "INSTANCE_SWAP",
|
|
418
|
+
"preferredValues": []
|
|
419
|
+
},
|
|
420
|
+
"Icon#7574:0": {
|
|
421
|
+
"type": "INSTANCE_SWAP",
|
|
422
|
+
"preferredValues": []
|
|
423
|
+
},
|
|
424
|
+
"Size": {
|
|
425
|
+
"type": "VARIANT",
|
|
426
|
+
"variantOptions": [
|
|
427
|
+
"XSmall",
|
|
428
|
+
"Small",
|
|
429
|
+
"Medium",
|
|
430
|
+
"Large"
|
|
431
|
+
]
|
|
432
|
+
},
|
|
433
|
+
"Layout": {
|
|
434
|
+
"type": "VARIANT",
|
|
435
|
+
"variantOptions": [
|
|
436
|
+
"Text Only",
|
|
437
|
+
"Icon First",
|
|
438
|
+
"Icon Last",
|
|
439
|
+
"Icon Only"
|
|
440
|
+
]
|
|
441
|
+
},
|
|
442
|
+
"Variant": {
|
|
443
|
+
"type": "VARIANT",
|
|
444
|
+
"variantOptions": [
|
|
445
|
+
"Neutral Solid",
|
|
446
|
+
"Brand Solid",
|
|
447
|
+
"Critical Solid",
|
|
448
|
+
"Neutral Weak",
|
|
449
|
+
"Brand Outline",
|
|
450
|
+
"Neutral Outline"
|
|
451
|
+
]
|
|
452
|
+
},
|
|
453
|
+
"State": {
|
|
454
|
+
"type": "VARIANT",
|
|
455
|
+
"variantOptions": [
|
|
456
|
+
"Enabled",
|
|
457
|
+
"Pressed",
|
|
458
|
+
"Loading",
|
|
459
|
+
"Disabled"
|
|
460
|
+
]
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
};
|
|
464
|
+
|
|
465
|
+
declare const alertDialog: {
|
|
466
|
+
"name": "alertDialog",
|
|
467
|
+
"key": "e0c89524a554ca1bf95c016b7255f29e257624aa",
|
|
468
|
+
"componentPropertyDefinitions": {
|
|
469
|
+
"Title Text#20361:0": {
|
|
470
|
+
"type": "TEXT"
|
|
471
|
+
},
|
|
472
|
+
"Description Text#20361:7": {
|
|
473
|
+
"type": "TEXT"
|
|
474
|
+
},
|
|
475
|
+
"Show Title#20361:14": {
|
|
476
|
+
"type": "BOOLEAN"
|
|
477
|
+
},
|
|
478
|
+
"Layout": {
|
|
479
|
+
"type": "VARIANT",
|
|
480
|
+
"variantOptions": [
|
|
481
|
+
"Single",
|
|
482
|
+
"Neutral",
|
|
483
|
+
"Neutral (Overflow)",
|
|
484
|
+
"Critical",
|
|
485
|
+
"Critical (Overflow)",
|
|
486
|
+
"Nonpreferred"
|
|
487
|
+
]
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
};
|
|
491
|
+
|
|
492
|
+
declare const avatar: {
|
|
493
|
+
"name": "avatar",
|
|
494
|
+
"key": "4a8853c3068c08b69b13e71dd42ce186e968697e",
|
|
495
|
+
"componentPropertyDefinitions": {
|
|
496
|
+
"Has Image Contents#33407:0": {
|
|
497
|
+
"type": "BOOLEAN"
|
|
498
|
+
},
|
|
499
|
+
"Size": {
|
|
500
|
+
"type": "VARIANT",
|
|
501
|
+
"variantOptions": [
|
|
502
|
+
"20",
|
|
503
|
+
"24",
|
|
504
|
+
"36",
|
|
505
|
+
"42",
|
|
506
|
+
"48",
|
|
507
|
+
"64",
|
|
508
|
+
"80",
|
|
509
|
+
"96",
|
|
510
|
+
"108"
|
|
511
|
+
]
|
|
512
|
+
},
|
|
513
|
+
"Badge": {
|
|
514
|
+
"type": "VARIANT",
|
|
515
|
+
"variantOptions": [
|
|
516
|
+
"None",
|
|
517
|
+
"Circle",
|
|
518
|
+
"Shield",
|
|
519
|
+
"Flower"
|
|
520
|
+
]
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
};
|
|
524
|
+
|
|
525
|
+
declare const avatarStack: {
|
|
526
|
+
"name": "avatarStack",
|
|
527
|
+
"key": "e8e91e01000d878742c55cd6e44b6786460440f7",
|
|
528
|
+
"componentPropertyDefinitions": {
|
|
529
|
+
"Size": {
|
|
530
|
+
"type": "VARIANT",
|
|
531
|
+
"variantOptions": [
|
|
532
|
+
"20",
|
|
533
|
+
"24",
|
|
534
|
+
"36",
|
|
535
|
+
"42",
|
|
536
|
+
"48",
|
|
537
|
+
"64",
|
|
538
|
+
"80",
|
|
539
|
+
"96",
|
|
540
|
+
"108"
|
|
541
|
+
]
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
};
|
|
545
|
+
|
|
546
|
+
declare const badge: {
|
|
547
|
+
"name": "badge",
|
|
548
|
+
"key": "04609a35d47a1a0ef4904b3c25f79451892a85a1",
|
|
549
|
+
"componentPropertyDefinitions": {
|
|
550
|
+
"Label#1584:0": {
|
|
551
|
+
"type": "TEXT"
|
|
552
|
+
},
|
|
553
|
+
"Size": {
|
|
554
|
+
"type": "VARIANT",
|
|
555
|
+
"variantOptions": [
|
|
556
|
+
"Medium",
|
|
557
|
+
"Large"
|
|
558
|
+
]
|
|
559
|
+
},
|
|
560
|
+
"Tone": {
|
|
561
|
+
"type": "VARIANT",
|
|
562
|
+
"variantOptions": [
|
|
563
|
+
"Neutral",
|
|
564
|
+
"Brand",
|
|
565
|
+
"Informative",
|
|
566
|
+
"Positive",
|
|
567
|
+
"Critical",
|
|
568
|
+
"Warning"
|
|
569
|
+
]
|
|
570
|
+
},
|
|
571
|
+
"Variant": {
|
|
572
|
+
"type": "VARIANT",
|
|
573
|
+
"variantOptions": [
|
|
574
|
+
"Weak",
|
|
575
|
+
"Outline",
|
|
576
|
+
"Solid"
|
|
577
|
+
]
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
};
|
|
581
|
+
|
|
582
|
+
declare const bottomSheet: {
|
|
583
|
+
"name": "bottomSheet",
|
|
584
|
+
"key": "16bafa5d1155896fe18fb6f52f904f5cd2048686",
|
|
585
|
+
"componentPropertyDefinitions": {
|
|
586
|
+
"Title#19787:3": {
|
|
587
|
+
"type": "TEXT"
|
|
588
|
+
},
|
|
589
|
+
"Description#19787:7": {
|
|
590
|
+
"type": "TEXT"
|
|
591
|
+
},
|
|
592
|
+
"Show Close Button#19787:11": {
|
|
593
|
+
"type": "BOOLEAN"
|
|
594
|
+
},
|
|
595
|
+
"Show Footer#25162:14": {
|
|
596
|
+
"type": "BOOLEAN"
|
|
597
|
+
},
|
|
598
|
+
"Show Description#25192:0": {
|
|
599
|
+
"type": "BOOLEAN"
|
|
600
|
+
},
|
|
601
|
+
"Contents#25320:0": {
|
|
602
|
+
"type": "INSTANCE_SWAP",
|
|
603
|
+
"preferredValues": [
|
|
604
|
+
{
|
|
605
|
+
"type": "COMPONENT_SET",
|
|
606
|
+
"key": "ec1901cb37dc88360ae8fd2b61f71e630fda7924"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"type": "COMPONENT",
|
|
610
|
+
"key": "5c5369d9c22115fd240d7b75ac2a334e9163ea57"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"type": "COMPONENT",
|
|
614
|
+
"key": "8670afb7520ac44dfed003e3e9c7cce359897d0c"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"type": "COMPONENT",
|
|
618
|
+
"key": "e3d337e6eddbe9ec025fe69520c1cff0bd697b60"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"type": "COMPONENT",
|
|
622
|
+
"key": "0c6c58d5b7a159e7db1a0c1ccf32916ca8a51164"
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"type": "COMPONENT",
|
|
626
|
+
"key": "088624580ee501efed377bb4f42561a387db5699"
|
|
627
|
+
}
|
|
628
|
+
]
|
|
629
|
+
},
|
|
630
|
+
"Show Safe Area#25488:8": {
|
|
631
|
+
"type": "BOOLEAN"
|
|
632
|
+
},
|
|
633
|
+
"Show Handle#49774:6": {
|
|
634
|
+
"type": "BOOLEAN"
|
|
635
|
+
},
|
|
636
|
+
"Show Scroll Fog(Figma Only)#53171:3": {
|
|
637
|
+
"type": "BOOLEAN"
|
|
638
|
+
},
|
|
639
|
+
"Header Layout": {
|
|
640
|
+
"type": "VARIANT",
|
|
641
|
+
"variantOptions": [
|
|
642
|
+
"Bottom Left",
|
|
643
|
+
"None",
|
|
644
|
+
"Bottom Center",
|
|
645
|
+
"Top Center",
|
|
646
|
+
"Top Left"
|
|
647
|
+
]
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
};
|
|
651
|
+
|
|
652
|
+
declare const callout: {
|
|
653
|
+
"name": "callout",
|
|
654
|
+
"key": "ec46d38baac3c367c4a5ffa47a2110d51ba0a4fe",
|
|
655
|
+
"componentPropertyDefinitions": {
|
|
656
|
+
"Prefix Icon#35087:0": {
|
|
657
|
+
"type": "INSTANCE_SWAP",
|
|
658
|
+
"preferredValues": []
|
|
659
|
+
},
|
|
660
|
+
"Show Prefix Icon#35087:1": {
|
|
661
|
+
"type": "BOOLEAN"
|
|
662
|
+
},
|
|
663
|
+
"Pressed#35087:2": {
|
|
664
|
+
"type": "BOOLEAN"
|
|
665
|
+
},
|
|
666
|
+
"Interaction": {
|
|
667
|
+
"type": "VARIANT",
|
|
668
|
+
"variantOptions": [
|
|
669
|
+
"Display",
|
|
670
|
+
"Actionable",
|
|
671
|
+
"Dismissible"
|
|
672
|
+
]
|
|
673
|
+
},
|
|
674
|
+
"Tone": {
|
|
675
|
+
"type": "VARIANT",
|
|
676
|
+
"variantOptions": [
|
|
677
|
+
"Neutral",
|
|
678
|
+
"Informative",
|
|
679
|
+
"Critical",
|
|
680
|
+
"Warning",
|
|
681
|
+
"Magic",
|
|
682
|
+
"Positive"
|
|
683
|
+
]
|
|
684
|
+
},
|
|
685
|
+
"Show Title": {
|
|
686
|
+
"type": "VARIANT",
|
|
687
|
+
"variantOptions": [
|
|
688
|
+
"False",
|
|
689
|
+
"True"
|
|
690
|
+
]
|
|
691
|
+
},
|
|
692
|
+
"Show Link Text": {
|
|
693
|
+
"type": "VARIANT",
|
|
694
|
+
"variantOptions": [
|
|
695
|
+
"False",
|
|
696
|
+
"True"
|
|
697
|
+
]
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
};
|
|
701
|
+
|
|
702
|
+
declare const checkbox: {
|
|
703
|
+
"name": "checkbox",
|
|
704
|
+
"key": "94a2f6957a86f8ae3b8c7ca200dfcd5e29f6075b",
|
|
705
|
+
"componentPropertyDefinitions": {
|
|
706
|
+
"Label#49990:0": {
|
|
707
|
+
"type": "TEXT"
|
|
708
|
+
},
|
|
709
|
+
"Size": {
|
|
710
|
+
"type": "VARIANT",
|
|
711
|
+
"variantOptions": [
|
|
712
|
+
"Medium",
|
|
713
|
+
"Large"
|
|
714
|
+
]
|
|
715
|
+
},
|
|
716
|
+
"Tone": {
|
|
717
|
+
"type": "VARIANT",
|
|
718
|
+
"variantOptions": [
|
|
719
|
+
"🚫[Deprecated]Brand",
|
|
720
|
+
"Neutral"
|
|
721
|
+
]
|
|
722
|
+
},
|
|
723
|
+
"Shape": {
|
|
724
|
+
"type": "VARIANT",
|
|
725
|
+
"variantOptions": [
|
|
726
|
+
"Square",
|
|
727
|
+
"Ghost"
|
|
728
|
+
]
|
|
729
|
+
},
|
|
730
|
+
"Weight": {
|
|
731
|
+
"type": "VARIANT",
|
|
732
|
+
"variantOptions": [
|
|
733
|
+
"Bold",
|
|
734
|
+
"Regular"
|
|
735
|
+
]
|
|
736
|
+
},
|
|
737
|
+
"Selected": {
|
|
738
|
+
"type": "VARIANT",
|
|
739
|
+
"variantOptions": [
|
|
740
|
+
"True",
|
|
741
|
+
"False",
|
|
742
|
+
"Indeterminate"
|
|
743
|
+
]
|
|
744
|
+
},
|
|
745
|
+
"State": {
|
|
746
|
+
"type": "VARIANT",
|
|
747
|
+
"variantOptions": [
|
|
748
|
+
"Enabled",
|
|
749
|
+
"Pressed",
|
|
750
|
+
"Disabled"
|
|
751
|
+
]
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
};
|
|
755
|
+
|
|
756
|
+
declare const checkmark: {
|
|
757
|
+
"name": "checkmark",
|
|
758
|
+
"key": "fae60fb392f55bde60de1dbccb2f453320068805",
|
|
759
|
+
"componentPropertyDefinitions": {
|
|
760
|
+
"Size": {
|
|
761
|
+
"type": "VARIANT",
|
|
762
|
+
"variantOptions": [
|
|
763
|
+
"Medium",
|
|
764
|
+
"Large"
|
|
765
|
+
]
|
|
766
|
+
},
|
|
767
|
+
"Tone": {
|
|
768
|
+
"type": "VARIANT",
|
|
769
|
+
"variantOptions": [
|
|
770
|
+
"🚫[Deprecated]Brand",
|
|
771
|
+
"Neutral"
|
|
772
|
+
]
|
|
773
|
+
},
|
|
774
|
+
"Shape": {
|
|
775
|
+
"type": "VARIANT",
|
|
776
|
+
"variantOptions": [
|
|
777
|
+
"Square",
|
|
778
|
+
"Ghost"
|
|
779
|
+
]
|
|
780
|
+
},
|
|
781
|
+
"Selected": {
|
|
782
|
+
"type": "VARIANT",
|
|
783
|
+
"variantOptions": [
|
|
784
|
+
"True",
|
|
785
|
+
"False",
|
|
786
|
+
"Indeterminate"
|
|
787
|
+
]
|
|
788
|
+
},
|
|
789
|
+
"State": {
|
|
790
|
+
"type": "VARIANT",
|
|
791
|
+
"variantOptions": [
|
|
792
|
+
"Enabled",
|
|
793
|
+
"Pressed",
|
|
794
|
+
"Disabled"
|
|
795
|
+
]
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
};
|
|
799
|
+
|
|
800
|
+
declare const chip: {
|
|
801
|
+
"name": "chip",
|
|
802
|
+
"key": "8156ef08d9aaa2b0de1cc4a113ec0c9d0586f831",
|
|
803
|
+
"componentPropertyDefinitions": {
|
|
804
|
+
"Label#7185:0": {
|
|
805
|
+
"type": "TEXT"
|
|
806
|
+
},
|
|
807
|
+
"Prefix Icon#8722:0": {
|
|
808
|
+
"type": "INSTANCE_SWAP",
|
|
809
|
+
"preferredValues": [
|
|
810
|
+
{
|
|
811
|
+
"type": "COMPONENT_SET",
|
|
812
|
+
"key": "8ed05ef62a40f2dc034ee7eb6945bd0e63ad49aa"
|
|
813
|
+
}
|
|
814
|
+
]
|
|
815
|
+
},
|
|
816
|
+
"Suffix Type#32538:0": {
|
|
817
|
+
"type": "INSTANCE_SWAP",
|
|
818
|
+
"preferredValues": [
|
|
819
|
+
{
|
|
820
|
+
"type": "COMPONENT",
|
|
821
|
+
"key": "27343e0e5ab2c66948e9b10fde03d58b5e037212"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"type": "COMPONENT",
|
|
825
|
+
"key": "5f0d74c959c49dadf5920b19c6267924982ab130"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"type": "COMPONENT",
|
|
829
|
+
"key": "a1233c35c4368aba2439d39bc8aedc37cf95bd86"
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"type": "COMPONENT_SET",
|
|
833
|
+
"key": "43b6e51bc372e108a4ee17fbf4c75800d95f4b8c"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"type": "COMPONENT_SET",
|
|
837
|
+
"key": "df43b92004c850e7c6d2869e7a4ba1ef9a2d7db6"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"type": "COMPONENT_SET",
|
|
841
|
+
"key": "19923052d4152393ecdc6e2f5853ea0359849127"
|
|
842
|
+
}
|
|
843
|
+
]
|
|
844
|
+
},
|
|
845
|
+
"Has Suffix#32538:181": {
|
|
846
|
+
"type": "BOOLEAN"
|
|
847
|
+
},
|
|
848
|
+
"Variant": {
|
|
849
|
+
"type": "VARIANT",
|
|
850
|
+
"variantOptions": [
|
|
851
|
+
"Solid",
|
|
852
|
+
"Outline Strong",
|
|
853
|
+
"Outline Weak"
|
|
854
|
+
]
|
|
855
|
+
},
|
|
856
|
+
"Size": {
|
|
857
|
+
"type": "VARIANT",
|
|
858
|
+
"variantOptions": [
|
|
859
|
+
"Large",
|
|
860
|
+
"Medium",
|
|
861
|
+
"Small"
|
|
862
|
+
]
|
|
863
|
+
},
|
|
864
|
+
"Selected": {
|
|
865
|
+
"type": "VARIANT",
|
|
866
|
+
"variantOptions": [
|
|
867
|
+
"False",
|
|
868
|
+
"True"
|
|
869
|
+
]
|
|
870
|
+
},
|
|
871
|
+
"State": {
|
|
872
|
+
"type": "VARIANT",
|
|
873
|
+
"variantOptions": [
|
|
874
|
+
"Enabled",
|
|
875
|
+
"Pressed",
|
|
876
|
+
"Disabled"
|
|
877
|
+
]
|
|
878
|
+
},
|
|
879
|
+
"Prefix Type": {
|
|
880
|
+
"type": "VARIANT",
|
|
881
|
+
"variantOptions": [
|
|
882
|
+
"None",
|
|
883
|
+
"Icon",
|
|
884
|
+
"Avatar",
|
|
885
|
+
"Image"
|
|
886
|
+
]
|
|
887
|
+
}
|
|
888
|
+
}
|
|
889
|
+
};
|
|
890
|
+
|
|
891
|
+
declare const contextualFloatingButton: {
|
|
892
|
+
"name": "contextualFloatingButton",
|
|
893
|
+
"key": "032f3fddaad0aa3fa5a7f680768c1f5d02fb463f",
|
|
894
|
+
"componentPropertyDefinitions": {
|
|
895
|
+
"Icon#28796:0": {
|
|
896
|
+
"type": "INSTANCE_SWAP",
|
|
897
|
+
"preferredValues": []
|
|
898
|
+
},
|
|
899
|
+
"Label#28936:0": {
|
|
900
|
+
"type": "TEXT"
|
|
901
|
+
},
|
|
902
|
+
"Layout": {
|
|
903
|
+
"type": "VARIANT",
|
|
904
|
+
"variantOptions": [
|
|
905
|
+
"Icon First",
|
|
906
|
+
"Icon Only"
|
|
907
|
+
]
|
|
908
|
+
},
|
|
909
|
+
"Variant": {
|
|
910
|
+
"type": "VARIANT",
|
|
911
|
+
"variantOptions": [
|
|
912
|
+
"Solid",
|
|
913
|
+
"Layer"
|
|
914
|
+
]
|
|
915
|
+
},
|
|
916
|
+
"State": {
|
|
917
|
+
"type": "VARIANT",
|
|
918
|
+
"variantOptions": [
|
|
919
|
+
"Enabled",
|
|
920
|
+
"Pressed",
|
|
921
|
+
"Loading",
|
|
922
|
+
"Disabled"
|
|
923
|
+
]
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
};
|
|
927
|
+
|
|
928
|
+
declare const divider: {
|
|
929
|
+
"name": "divider",
|
|
930
|
+
"key": "848e953725f757ea1a79e1fecc0b608a035032d3",
|
|
931
|
+
"componentPropertyDefinitions": {
|
|
932
|
+
"Inset (Figma-Only)#36435:0": {
|
|
933
|
+
"type": "BOOLEAN"
|
|
934
|
+
},
|
|
935
|
+
"Tone": {
|
|
936
|
+
"type": "VARIANT",
|
|
937
|
+
"variantOptions": [
|
|
938
|
+
"Neutral Muted",
|
|
939
|
+
"Neutral Subtle"
|
|
940
|
+
]
|
|
941
|
+
},
|
|
942
|
+
"Orientation": {
|
|
943
|
+
"type": "VARIANT",
|
|
944
|
+
"variantOptions": [
|
|
945
|
+
"Vertical",
|
|
946
|
+
"Horizontal"
|
|
947
|
+
]
|
|
948
|
+
}
|
|
949
|
+
}
|
|
950
|
+
};
|
|
951
|
+
|
|
952
|
+
declare const floatingActionButton: {
|
|
953
|
+
"name": "floatingActionButton",
|
|
954
|
+
"key": "65f9e7eede627b893fb8ff94ed9a7d0db900c464",
|
|
955
|
+
"componentPropertyDefinitions": {
|
|
956
|
+
"Type": {
|
|
957
|
+
"type": "VARIANT",
|
|
958
|
+
"variantOptions": [
|
|
959
|
+
"Button",
|
|
960
|
+
"Menu"
|
|
961
|
+
]
|
|
962
|
+
}
|
|
963
|
+
}
|
|
964
|
+
};
|
|
965
|
+
|
|
966
|
+
declare const helpBubble: {
|
|
967
|
+
"name": "helpBubble",
|
|
968
|
+
"key": "804b327c091278a40d5891939eaed90bb2889659",
|
|
969
|
+
"componentPropertyDefinitions": {
|
|
970
|
+
"Show Close Button#40538:0": {
|
|
971
|
+
"type": "BOOLEAN"
|
|
972
|
+
},
|
|
973
|
+
"Show Description#62499:0": {
|
|
974
|
+
"type": "BOOLEAN"
|
|
975
|
+
},
|
|
976
|
+
"Title#62535:0": {
|
|
977
|
+
"type": "TEXT"
|
|
978
|
+
},
|
|
979
|
+
"Description#62535:98": {
|
|
980
|
+
"type": "TEXT"
|
|
981
|
+
},
|
|
982
|
+
"Placement": {
|
|
983
|
+
"type": "VARIANT",
|
|
984
|
+
"variantOptions": [
|
|
985
|
+
"Right-Top",
|
|
986
|
+
"Right-Center",
|
|
987
|
+
"Right-Bottom",
|
|
988
|
+
"Left-Top",
|
|
989
|
+
"Left-Center",
|
|
990
|
+
"Left-Bottom",
|
|
991
|
+
"Bottom-Left",
|
|
992
|
+
"Bottom-Center",
|
|
993
|
+
"Bottom-Right",
|
|
994
|
+
"Top-Left",
|
|
995
|
+
"Top-Center",
|
|
996
|
+
"Top-Right"
|
|
997
|
+
]
|
|
998
|
+
}
|
|
999
|
+
}
|
|
1000
|
+
};
|
|
1001
|
+
|
|
1002
|
+
declare const listHeader: {
|
|
1003
|
+
"name": "listHeader",
|
|
1004
|
+
"key": "609f93ed0608ef0a6d9a351e47595ad631bae0fa",
|
|
1005
|
+
"componentPropertyDefinitions": {
|
|
1006
|
+
"Title#28588:0": {
|
|
1007
|
+
"type": "TEXT"
|
|
1008
|
+
},
|
|
1009
|
+
"Suffix": {
|
|
1010
|
+
"type": "VARIANT",
|
|
1011
|
+
"variantOptions": [
|
|
1012
|
+
"None",
|
|
1013
|
+
"Custom",
|
|
1014
|
+
"Button"
|
|
1015
|
+
]
|
|
1016
|
+
},
|
|
1017
|
+
"Variant": {
|
|
1018
|
+
"type": "VARIANT",
|
|
1019
|
+
"variantOptions": [
|
|
1020
|
+
"Medium Weak",
|
|
1021
|
+
"Bold Solid"
|
|
1022
|
+
]
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
};
|
|
1026
|
+
|
|
1027
|
+
declare const listItem: {
|
|
1028
|
+
"name": "listItem",
|
|
1029
|
+
"key": "b51b7d07c659fee5d696565b8e1151636573b27c",
|
|
1030
|
+
"componentPropertyDefinitions": {
|
|
1031
|
+
"Divider#28441:0": {
|
|
1032
|
+
"type": "BOOLEAN"
|
|
1033
|
+
},
|
|
1034
|
+
"Suffix Type#28441:42": {
|
|
1035
|
+
"type": "INSTANCE_SWAP",
|
|
1036
|
+
"preferredValues": [
|
|
1037
|
+
{
|
|
1038
|
+
"type": "COMPONENT",
|
|
1039
|
+
"key": "8c52207687ffed15cd5931d71ed9d196b3358a68"
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
"type": "COMPONENT",
|
|
1043
|
+
"key": "fe0e25f4fecda59d0a3730ead7c5bc0a66a41e7e"
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
"type": "COMPONENT",
|
|
1047
|
+
"key": "abf9810103ae6e6afe8fa253ec5f05d6a7304b38"
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
"type": "COMPONENT",
|
|
1051
|
+
"key": "0a9464ad270bfd7f56438f62bb0155a25ca146a9"
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"type": "COMPONENT",
|
|
1055
|
+
"key": "4cc7e9b84a8388a36cb3898c6c02e6110a3281b9"
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"type": "COMPONENT",
|
|
1059
|
+
"key": "1e933f75dd6bb4b21c3289b5c3b4402d2c623125"
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"type": "COMPONENT",
|
|
1063
|
+
"key": "11ba71b11b336199654cd2801967a44996705449"
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
"type": "COMPONENT",
|
|
1067
|
+
"key": "c0eaee6146c6dc92bfd9b081d667f45ee611b1d2"
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"type": "COMPONENT_SET",
|
|
1071
|
+
"key": "3d788f28c785d1c60b937b253c39ce582dbe1ed3"
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"type": "COMPONENT_SET",
|
|
1075
|
+
"key": "5636566f6de6f58200dce388f7b1ac9f517b30e1"
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
"type": "COMPONENT",
|
|
1079
|
+
"key": "3a70bf5bb9856c13893931b7a0df652bcf0be895"
|
|
1080
|
+
}
|
|
1081
|
+
]
|
|
1082
|
+
},
|
|
1083
|
+
"Title#28452:21": {
|
|
1084
|
+
"type": "TEXT"
|
|
1085
|
+
},
|
|
1086
|
+
"Has Suffix#28452:64": {
|
|
1087
|
+
"type": "BOOLEAN"
|
|
1088
|
+
},
|
|
1089
|
+
"Has Prefix#28452:85": {
|
|
1090
|
+
"type": "BOOLEAN"
|
|
1091
|
+
},
|
|
1092
|
+
"Prefix Type#28452:106": {
|
|
1093
|
+
"type": "INSTANCE_SWAP",
|
|
1094
|
+
"preferredValues": [
|
|
1095
|
+
{
|
|
1096
|
+
"type": "COMPONENT",
|
|
1097
|
+
"key": "0e4c05f097d3fa2dc0cbfdbf8db2662bcf8439ca"
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
"type": "COMPONENT",
|
|
1101
|
+
"key": "ef0e8bd6c2f92e620acf204bb9a8079ef25a1e5c"
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"type": "COMPONENT",
|
|
1105
|
+
"key": "82239325aa1cb65af7c649fc71a8f2b48fb9b9f3"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"type": "COMPONENT",
|
|
1109
|
+
"key": "f24c9ef42ef08df79483fbae0fa7d9037e566748"
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"type": "COMPONENT",
|
|
1113
|
+
"key": "5a77ad37a2291989dfe77c44ddee9aa39e447f90"
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"type": "COMPONENT",
|
|
1117
|
+
"key": "81f201fc876e38f016ab7427a6b3da000ee919a2"
|
|
1118
|
+
}
|
|
1119
|
+
]
|
|
1120
|
+
},
|
|
1121
|
+
"Has Detail#28469:1": {
|
|
1122
|
+
"type": "BOOLEAN"
|
|
1123
|
+
},
|
|
1124
|
+
"Detail Type#28469:11": {
|
|
1125
|
+
"type": "INSTANCE_SWAP",
|
|
1126
|
+
"preferredValues": [
|
|
1127
|
+
{
|
|
1128
|
+
"type": "COMPONENT",
|
|
1129
|
+
"key": "b27f70404d8f055ec39f9049a5a86920c11be979"
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"type": "COMPONENT",
|
|
1133
|
+
"key": "43795c2e3e507dc555f9ec08bf4bf1abf8c2051a"
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"type": "COMPONENT",
|
|
1137
|
+
"key": "73bcdff1b73998d1f440fb8827df2eafc4338c1d"
|
|
1138
|
+
}
|
|
1139
|
+
]
|
|
1140
|
+
},
|
|
1141
|
+
"Title #28487:0": {
|
|
1142
|
+
"type": "TEXT"
|
|
1143
|
+
},
|
|
1144
|
+
"Detail Type #28487:11": {
|
|
1145
|
+
"type": "INSTANCE_SWAP",
|
|
1146
|
+
"preferredValues": [
|
|
1147
|
+
{
|
|
1148
|
+
"type": "COMPONENT",
|
|
1149
|
+
"key": "870d50d39feae5bcfd59d7fbf8ae510233a97a8b"
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"type": "COMPONENT",
|
|
1153
|
+
"key": "43795c2e3e507dc555f9ec08bf4bf1abf8c2051a"
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"type": "COMPONENT",
|
|
1157
|
+
"key": "73bcdff1b73998d1f440fb8827df2eafc4338c1d"
|
|
1158
|
+
}
|
|
1159
|
+
]
|
|
1160
|
+
},
|
|
1161
|
+
"State": {
|
|
1162
|
+
"type": "VARIANT",
|
|
1163
|
+
"variantOptions": [
|
|
1164
|
+
"Enabled",
|
|
1165
|
+
"Pressed",
|
|
1166
|
+
"Disabled"
|
|
1167
|
+
]
|
|
1168
|
+
},
|
|
1169
|
+
"Variants": {
|
|
1170
|
+
"type": "VARIANT",
|
|
1171
|
+
"variantOptions": [
|
|
1172
|
+
"Single Line",
|
|
1173
|
+
"Multi Line"
|
|
1174
|
+
]
|
|
1175
|
+
},
|
|
1176
|
+
"Highlighted": {
|
|
1177
|
+
"type": "VARIANT",
|
|
1178
|
+
"variantOptions": [
|
|
1179
|
+
"True",
|
|
1180
|
+
"False"
|
|
1181
|
+
]
|
|
1182
|
+
}
|
|
1183
|
+
}
|
|
1184
|
+
};
|
|
1185
|
+
|
|
1186
|
+
declare const mannerTemp: {
|
|
1187
|
+
"name": "mannerTemp",
|
|
1188
|
+
"key": "37c0a35f73a730fdfba7929cea91a7590fc93733",
|
|
1189
|
+
"componentPropertyDefinitions": {
|
|
1190
|
+
"Level": {
|
|
1191
|
+
"type": "VARIANT",
|
|
1192
|
+
"variantOptions": [
|
|
1193
|
+
"L1",
|
|
1194
|
+
"L2",
|
|
1195
|
+
"L3",
|
|
1196
|
+
"L4",
|
|
1197
|
+
"L5",
|
|
1198
|
+
"L6",
|
|
1199
|
+
"L7",
|
|
1200
|
+
"L8",
|
|
1201
|
+
"L9",
|
|
1202
|
+
"L10"
|
|
1203
|
+
]
|
|
1204
|
+
}
|
|
1205
|
+
}
|
|
1206
|
+
};
|
|
1207
|
+
|
|
1208
|
+
declare const mannerTempBadge: {
|
|
1209
|
+
"name": "mannerTempBadge",
|
|
1210
|
+
"key": "3ef9a84d4d80046ff9a581136bd56269554a6e00",
|
|
1211
|
+
"componentPropertyDefinitions": {
|
|
1212
|
+
"Level": {
|
|
1213
|
+
"type": "VARIANT",
|
|
1214
|
+
"variantOptions": [
|
|
1215
|
+
"L1",
|
|
1216
|
+
"L2",
|
|
1217
|
+
"L3",
|
|
1218
|
+
"L4",
|
|
1219
|
+
"L5",
|
|
1220
|
+
"L6",
|
|
1221
|
+
"L7",
|
|
1222
|
+
"L8",
|
|
1223
|
+
"L9",
|
|
1224
|
+
"L10"
|
|
1225
|
+
]
|
|
1226
|
+
}
|
|
1227
|
+
}
|
|
1228
|
+
};
|
|
1229
|
+
|
|
1230
|
+
declare const menuSheet: {
|
|
1231
|
+
"name": "menuSheet",
|
|
1232
|
+
"key": "cd4cf8a850bf3de87b79080b36b421a649bf3fcb",
|
|
1233
|
+
"componentPropertyDefinitions": {
|
|
1234
|
+
"Title Text#14599:0": {
|
|
1235
|
+
"type": "TEXT"
|
|
1236
|
+
},
|
|
1237
|
+
"Show Header#17043:12": {
|
|
1238
|
+
"type": "BOOLEAN"
|
|
1239
|
+
},
|
|
1240
|
+
"Description Text#21827:0": {
|
|
1241
|
+
"type": "TEXT"
|
|
1242
|
+
},
|
|
1243
|
+
"Show Safe Area#25531:15": {
|
|
1244
|
+
"type": "BOOLEAN"
|
|
1245
|
+
},
|
|
1246
|
+
"Show Header Description#32984:0": {
|
|
1247
|
+
"type": "BOOLEAN"
|
|
1248
|
+
},
|
|
1249
|
+
"Menu Group Count": {
|
|
1250
|
+
"type": "VARIANT",
|
|
1251
|
+
"variantOptions": [
|
|
1252
|
+
"1",
|
|
1253
|
+
"2",
|
|
1254
|
+
"3"
|
|
1255
|
+
]
|
|
1256
|
+
},
|
|
1257
|
+
"Layout": {
|
|
1258
|
+
"type": "VARIANT",
|
|
1259
|
+
"variantOptions": [
|
|
1260
|
+
"Text Only",
|
|
1261
|
+
"Text with Icon"
|
|
1262
|
+
]
|
|
1263
|
+
}
|
|
1264
|
+
}
|
|
1265
|
+
};
|
|
1266
|
+
|
|
1267
|
+
declare const pageBanner: {
|
|
1268
|
+
"name": "pageBanner",
|
|
1269
|
+
"key": "ce587d0f21754af05240cb32a4880227cb0ea1e1",
|
|
1270
|
+
"componentPropertyDefinitions": {
|
|
1271
|
+
"Show Prefix Icon#11840:27": {
|
|
1272
|
+
"type": "BOOLEAN"
|
|
1273
|
+
},
|
|
1274
|
+
"Prefix Icon#35433:45": {
|
|
1275
|
+
"type": "INSTANCE_SWAP",
|
|
1276
|
+
"preferredValues": []
|
|
1277
|
+
},
|
|
1278
|
+
"Pressed#36736:0": {
|
|
1279
|
+
"type": "BOOLEAN"
|
|
1280
|
+
},
|
|
1281
|
+
"Interaction": {
|
|
1282
|
+
"type": "VARIANT",
|
|
1283
|
+
"variantOptions": [
|
|
1284
|
+
"Display",
|
|
1285
|
+
"Display (With Action)",
|
|
1286
|
+
"Actionable",
|
|
1287
|
+
"Dismissible",
|
|
1288
|
+
"Actionable (Custom)"
|
|
1289
|
+
]
|
|
1290
|
+
},
|
|
1291
|
+
"Tone": {
|
|
1292
|
+
"type": "VARIANT",
|
|
1293
|
+
"variantOptions": [
|
|
1294
|
+
"Neutral",
|
|
1295
|
+
"Informative",
|
|
1296
|
+
"Positive",
|
|
1297
|
+
"Warning",
|
|
1298
|
+
"Critical",
|
|
1299
|
+
"Magic"
|
|
1300
|
+
]
|
|
1301
|
+
},
|
|
1302
|
+
"Variant": {
|
|
1303
|
+
"type": "VARIANT",
|
|
1304
|
+
"variantOptions": [
|
|
1305
|
+
"Weak",
|
|
1306
|
+
"Solid"
|
|
1307
|
+
]
|
|
1308
|
+
},
|
|
1309
|
+
"Show Title": {
|
|
1310
|
+
"type": "VARIANT",
|
|
1311
|
+
"variantOptions": [
|
|
1312
|
+
"False",
|
|
1313
|
+
"True"
|
|
1314
|
+
]
|
|
1315
|
+
}
|
|
1316
|
+
}
|
|
1317
|
+
};
|
|
1318
|
+
|
|
1319
|
+
declare const progressCircle: {
|
|
1320
|
+
"name": "progressCircle",
|
|
1321
|
+
"key": "6e6779a372cab2485a0e25529bc4dbc9932a7346",
|
|
1322
|
+
"componentPropertyDefinitions": {
|
|
1323
|
+
"Size": {
|
|
1324
|
+
"type": "VARIANT",
|
|
1325
|
+
"variantOptions": [
|
|
1326
|
+
"24",
|
|
1327
|
+
"40"
|
|
1328
|
+
]
|
|
1329
|
+
},
|
|
1330
|
+
"Tone": {
|
|
1331
|
+
"type": "VARIANT",
|
|
1332
|
+
"variantOptions": [
|
|
1333
|
+
"Neutral",
|
|
1334
|
+
"Brand",
|
|
1335
|
+
"Static White",
|
|
1336
|
+
"Custom(inherit)"
|
|
1337
|
+
]
|
|
1338
|
+
},
|
|
1339
|
+
"Value": {
|
|
1340
|
+
"type": "VARIANT",
|
|
1341
|
+
"variantOptions": [
|
|
1342
|
+
"Indeterminate",
|
|
1343
|
+
"0%",
|
|
1344
|
+
"25%",
|
|
1345
|
+
"75%",
|
|
1346
|
+
"100%"
|
|
1347
|
+
]
|
|
1348
|
+
}
|
|
1349
|
+
}
|
|
1350
|
+
};
|
|
1351
|
+
|
|
1352
|
+
declare const radio: {
|
|
1353
|
+
"name": "radio",
|
|
1354
|
+
"key": "ac72d9e5ab04a1d59eaf77dffd380fd6e491ecf8",
|
|
1355
|
+
"componentPropertyDefinitions": {
|
|
1356
|
+
"Label#49990:171": {
|
|
1357
|
+
"type": "TEXT"
|
|
1358
|
+
},
|
|
1359
|
+
"Size": {
|
|
1360
|
+
"type": "VARIANT",
|
|
1361
|
+
"variantOptions": [
|
|
1362
|
+
"Medium",
|
|
1363
|
+
"Large"
|
|
1364
|
+
]
|
|
1365
|
+
},
|
|
1366
|
+
"Tone": {
|
|
1367
|
+
"type": "VARIANT",
|
|
1368
|
+
"variantOptions": [
|
|
1369
|
+
"Neutral",
|
|
1370
|
+
"🚫[Deprecated]Brand"
|
|
1371
|
+
]
|
|
1372
|
+
},
|
|
1373
|
+
"Weight": {
|
|
1374
|
+
"type": "VARIANT",
|
|
1375
|
+
"variantOptions": [
|
|
1376
|
+
"Regular",
|
|
1377
|
+
"Bold"
|
|
1378
|
+
]
|
|
1379
|
+
},
|
|
1380
|
+
"Selected": {
|
|
1381
|
+
"type": "VARIANT",
|
|
1382
|
+
"variantOptions": [
|
|
1383
|
+
"True",
|
|
1384
|
+
"False"
|
|
1385
|
+
]
|
|
1386
|
+
},
|
|
1387
|
+
"State": {
|
|
1388
|
+
"type": "VARIANT",
|
|
1389
|
+
"variantOptions": [
|
|
1390
|
+
"Enabled",
|
|
1391
|
+
"Pressed",
|
|
1392
|
+
"Disabled"
|
|
1393
|
+
]
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
};
|
|
1397
|
+
|
|
1398
|
+
declare const radiomark: {
|
|
1399
|
+
"name": "radiomark",
|
|
1400
|
+
"key": "832d696d6e9566610968cd70f128f500ec009d6a",
|
|
1401
|
+
"componentPropertyDefinitions": {
|
|
1402
|
+
"Size": {
|
|
1403
|
+
"type": "VARIANT",
|
|
1404
|
+
"variantOptions": [
|
|
1405
|
+
"Medium",
|
|
1406
|
+
"Large"
|
|
1407
|
+
]
|
|
1408
|
+
},
|
|
1409
|
+
"Tone": {
|
|
1410
|
+
"type": "VARIANT",
|
|
1411
|
+
"variantOptions": [
|
|
1412
|
+
"Neutral",
|
|
1413
|
+
"🚫[Deprecated]Brand"
|
|
1414
|
+
]
|
|
1415
|
+
},
|
|
1416
|
+
"Selected": {
|
|
1417
|
+
"type": "VARIANT",
|
|
1418
|
+
"variantOptions": [
|
|
1419
|
+
"True",
|
|
1420
|
+
"False"
|
|
1421
|
+
]
|
|
1422
|
+
},
|
|
1423
|
+
"State": {
|
|
1424
|
+
"type": "VARIANT",
|
|
1425
|
+
"variantOptions": [
|
|
1426
|
+
"Enabled",
|
|
1427
|
+
"Pressed",
|
|
1428
|
+
"Disabled"
|
|
1429
|
+
]
|
|
1430
|
+
}
|
|
1431
|
+
}
|
|
1432
|
+
};
|
|
1433
|
+
|
|
1434
|
+
declare const reactionButton: {
|
|
1435
|
+
"name": "reactionButton",
|
|
1436
|
+
"key": "ec43e4e881f7048e95601f8b58c01a0905a174e0",
|
|
1437
|
+
"componentPropertyDefinitions": {
|
|
1438
|
+
"Label#6397:0": {
|
|
1439
|
+
"type": "TEXT"
|
|
1440
|
+
},
|
|
1441
|
+
"Show Count#6397:33": {
|
|
1442
|
+
"type": "BOOLEAN"
|
|
1443
|
+
},
|
|
1444
|
+
"Icon#12379:0": {
|
|
1445
|
+
"type": "INSTANCE_SWAP",
|
|
1446
|
+
"preferredValues": []
|
|
1447
|
+
},
|
|
1448
|
+
"Count#15816:0": {
|
|
1449
|
+
"type": "TEXT"
|
|
1450
|
+
},
|
|
1451
|
+
"Size": {
|
|
1452
|
+
"type": "VARIANT",
|
|
1453
|
+
"variantOptions": [
|
|
1454
|
+
"XSmall",
|
|
1455
|
+
"Small"
|
|
1456
|
+
]
|
|
1457
|
+
},
|
|
1458
|
+
"Selected": {
|
|
1459
|
+
"type": "VARIANT",
|
|
1460
|
+
"variantOptions": [
|
|
1461
|
+
"True",
|
|
1462
|
+
"False"
|
|
1463
|
+
]
|
|
1464
|
+
},
|
|
1465
|
+
"State": {
|
|
1466
|
+
"type": "VARIANT",
|
|
1467
|
+
"variantOptions": [
|
|
1468
|
+
"Enabled",
|
|
1469
|
+
"Pressed",
|
|
1470
|
+
"Loading",
|
|
1471
|
+
"Disabled"
|
|
1472
|
+
]
|
|
1473
|
+
}
|
|
1474
|
+
}
|
|
1475
|
+
};
|
|
1476
|
+
|
|
1477
|
+
declare const resultSection: {
|
|
1478
|
+
"name": "resultSection",
|
|
1479
|
+
"key": "fabd52c41c63d921e37e0a1de373e4df2b496f30",
|
|
1480
|
+
"componentPropertyDefinitions": {
|
|
1481
|
+
"Title#16237:0": {
|
|
1482
|
+
"type": "TEXT"
|
|
1483
|
+
},
|
|
1484
|
+
"Description#16237:5": {
|
|
1485
|
+
"type": "TEXT"
|
|
1486
|
+
},
|
|
1487
|
+
"Asset Type#45154:9": {
|
|
1488
|
+
"type": "INSTANCE_SWAP",
|
|
1489
|
+
"preferredValues": [
|
|
1490
|
+
{
|
|
1491
|
+
"type": "COMPONENT",
|
|
1492
|
+
"key": "3f2ed06bd34fbaf24d371cefa973e09e2c2572bf"
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"type": "COMPONENT",
|
|
1496
|
+
"key": "bf1ad3ad5c45a2e94fd800f7f6ecbe52ba0667ab"
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"type": "COMPONENT",
|
|
1500
|
+
"key": "d357dcf0fbff80f3bfa70fe4fd5d48a9bddd1b49"
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
"type": "COMPONENT",
|
|
1504
|
+
"key": "a53df434b562c1eeb04dab9abd88431989c5fc33"
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
"type": "COMPONENT",
|
|
1508
|
+
"key": "5e53811a1e1444deccb5147b6a57196a3be467c9"
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"type": "COMPONENT",
|
|
1512
|
+
"key": "3ff3999d2d2bbed2c7656210793d4f083901f73b"
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"type": "COMPONENT",
|
|
1516
|
+
"key": "56fcf964b7784ca83eaf6c9b1531de6150d23a0d"
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
"type": "COMPONENT",
|
|
1520
|
+
"key": "5652618ddd66c844ab977d083d0dc41cb98f98ae"
|
|
1521
|
+
}
|
|
1522
|
+
]
|
|
1523
|
+
},
|
|
1524
|
+
"Show Asset#45154:14": {
|
|
1525
|
+
"type": "BOOLEAN"
|
|
1526
|
+
},
|
|
1527
|
+
"Show Buttons#53435:0": {
|
|
1528
|
+
"type": "BOOLEAN"
|
|
1529
|
+
},
|
|
1530
|
+
"ㄴShow First Button#53766:0": {
|
|
1531
|
+
"type": "BOOLEAN"
|
|
1532
|
+
},
|
|
1533
|
+
"ㄴShow Second Button#53766:3": {
|
|
1534
|
+
"type": "BOOLEAN"
|
|
1535
|
+
},
|
|
1536
|
+
"Size": {
|
|
1537
|
+
"type": "VARIANT",
|
|
1538
|
+
"variantOptions": [
|
|
1539
|
+
"Large",
|
|
1540
|
+
"Medium"
|
|
1541
|
+
]
|
|
1542
|
+
}
|
|
1543
|
+
}
|
|
1544
|
+
};
|
|
1545
|
+
|
|
1546
|
+
declare const segmentedControl: {
|
|
1547
|
+
"name": "segmentedControl",
|
|
1548
|
+
"key": "3ad7133ba52755867f42f9232375f75639e00d58",
|
|
1549
|
+
"componentPropertyDefinitions": {
|
|
1550
|
+
"Item Count": {
|
|
1551
|
+
"type": "VARIANT",
|
|
1552
|
+
"variantOptions": [
|
|
1553
|
+
"2",
|
|
1554
|
+
"3",
|
|
1555
|
+
"4"
|
|
1556
|
+
]
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1559
|
+
};
|
|
1560
|
+
|
|
1561
|
+
declare const skeleton: {
|
|
1562
|
+
"name": "skeleton",
|
|
1563
|
+
"key": "ef22c3288722fbfa64a5ab73df397ade88f8e05a",
|
|
1564
|
+
"componentPropertyDefinitions": {
|
|
1565
|
+
"Radius": {
|
|
1566
|
+
"type": "VARIANT",
|
|
1567
|
+
"variantOptions": [
|
|
1568
|
+
"0",
|
|
1569
|
+
"8",
|
|
1570
|
+
"16",
|
|
1571
|
+
"Full"
|
|
1572
|
+
]
|
|
1573
|
+
},
|
|
1574
|
+
"Tone": {
|
|
1575
|
+
"type": "VARIANT",
|
|
1576
|
+
"variantOptions": [
|
|
1577
|
+
"Magic",
|
|
1578
|
+
"Neutral"
|
|
1579
|
+
]
|
|
1580
|
+
}
|
|
1581
|
+
}
|
|
1582
|
+
};
|
|
1583
|
+
|
|
1584
|
+
declare const slider: {
|
|
1585
|
+
"name": "slider",
|
|
1586
|
+
"key": "14b3278452f03fa01ecc8012a07f124766714566",
|
|
1587
|
+
"componentPropertyDefinitions": {
|
|
1588
|
+
"Has Tick Mark#47921:0": {
|
|
1589
|
+
"type": "BOOLEAN"
|
|
1590
|
+
},
|
|
1591
|
+
"Show Active Track#48156:0": {
|
|
1592
|
+
"type": "BOOLEAN"
|
|
1593
|
+
},
|
|
1594
|
+
"Show Markers#49596:0": {
|
|
1595
|
+
"type": "BOOLEAN"
|
|
1596
|
+
},
|
|
1597
|
+
"Value": {
|
|
1598
|
+
"type": "VARIANT",
|
|
1599
|
+
"variantOptions": [
|
|
1600
|
+
"Single",
|
|
1601
|
+
"Range"
|
|
1602
|
+
]
|
|
1603
|
+
},
|
|
1604
|
+
"State": {
|
|
1605
|
+
"type": "VARIANT",
|
|
1606
|
+
"variantOptions": [
|
|
1607
|
+
"Enabled",
|
|
1608
|
+
"Pressed",
|
|
1609
|
+
"Disabled"
|
|
1610
|
+
]
|
|
1611
|
+
}
|
|
1612
|
+
}
|
|
1613
|
+
};
|
|
1614
|
+
|
|
1615
|
+
declare const snackbar: {
|
|
1616
|
+
"name": "snackbar",
|
|
1617
|
+
"key": "81b17fb8c7d731a19cf8d36a8605559d41414eca",
|
|
1618
|
+
"componentPropertyDefinitions": {
|
|
1619
|
+
"Show Action#1528:0": {
|
|
1620
|
+
"type": "BOOLEAN"
|
|
1621
|
+
},
|
|
1622
|
+
"Message#1528:4": {
|
|
1623
|
+
"type": "TEXT"
|
|
1624
|
+
},
|
|
1625
|
+
"Action Label#1528:8": {
|
|
1626
|
+
"type": "TEXT"
|
|
1627
|
+
},
|
|
1628
|
+
"Variant": {
|
|
1629
|
+
"type": "VARIANT",
|
|
1630
|
+
"variantOptions": [
|
|
1631
|
+
"Default",
|
|
1632
|
+
"Positive",
|
|
1633
|
+
"Critical"
|
|
1634
|
+
]
|
|
1635
|
+
}
|
|
1636
|
+
}
|
|
1637
|
+
};
|
|
1638
|
+
|
|
1639
|
+
declare const _switch: {
|
|
1640
|
+
"name": "_switch",
|
|
1641
|
+
"key": "65e0e7ba1a0c13b42e5fd0ceb17d5f756128dd6b",
|
|
1642
|
+
"componentPropertyDefinitions": {
|
|
1643
|
+
"Label#36578:0": {
|
|
1644
|
+
"type": "TEXT"
|
|
1645
|
+
},
|
|
1646
|
+
"Size": {
|
|
1647
|
+
"type": "VARIANT",
|
|
1648
|
+
"variantOptions": [
|
|
1649
|
+
"16",
|
|
1650
|
+
"24",
|
|
1651
|
+
"32"
|
|
1652
|
+
]
|
|
1653
|
+
},
|
|
1654
|
+
"Tone": {
|
|
1655
|
+
"type": "VARIANT",
|
|
1656
|
+
"variantOptions": [
|
|
1657
|
+
"Neutral",
|
|
1658
|
+
"🚫[Deprecated] Brand"
|
|
1659
|
+
]
|
|
1660
|
+
},
|
|
1661
|
+
"Selected": {
|
|
1662
|
+
"type": "VARIANT",
|
|
1663
|
+
"variantOptions": [
|
|
1664
|
+
"True",
|
|
1665
|
+
"False"
|
|
1666
|
+
]
|
|
1667
|
+
},
|
|
1668
|
+
"State": {
|
|
1669
|
+
"type": "VARIANT",
|
|
1670
|
+
"variantOptions": [
|
|
1671
|
+
"Enabled",
|
|
1672
|
+
"Disabled"
|
|
1673
|
+
]
|
|
1674
|
+
},
|
|
1675
|
+
"Layout(Figma Only)": {
|
|
1676
|
+
"type": "VARIANT",
|
|
1677
|
+
"variantOptions": [
|
|
1678
|
+
"Label Last",
|
|
1679
|
+
"Label First",
|
|
1680
|
+
"🚫[Switch Mark 사용] Switch Only"
|
|
1681
|
+
]
|
|
1682
|
+
}
|
|
1683
|
+
}
|
|
1684
|
+
};
|
|
1685
|
+
|
|
1686
|
+
declare const switchmark: {
|
|
1687
|
+
"name": "switchmark",
|
|
1688
|
+
"key": "bc53f269089e02a1d241e2a21ac7631bfa49834e",
|
|
1689
|
+
"componentPropertyDefinitions": {
|
|
1690
|
+
"Size": {
|
|
1691
|
+
"type": "VARIANT",
|
|
1692
|
+
"variantOptions": [
|
|
1693
|
+
"16",
|
|
1694
|
+
"24",
|
|
1695
|
+
"32"
|
|
1696
|
+
]
|
|
1697
|
+
},
|
|
1698
|
+
"Tone": {
|
|
1699
|
+
"type": "VARIANT",
|
|
1700
|
+
"variantOptions": [
|
|
1701
|
+
"Neutral",
|
|
1702
|
+
"🚫[Deprecated] Brand"
|
|
1703
|
+
]
|
|
1704
|
+
},
|
|
1705
|
+
"Selected": {
|
|
1706
|
+
"type": "VARIANT",
|
|
1707
|
+
"variantOptions": [
|
|
1708
|
+
"True",
|
|
1709
|
+
"False"
|
|
1710
|
+
]
|
|
1711
|
+
},
|
|
1712
|
+
"State": {
|
|
1713
|
+
"type": "VARIANT",
|
|
1714
|
+
"variantOptions": [
|
|
1715
|
+
"Enabled",
|
|
1716
|
+
"Disabled"
|
|
1717
|
+
]
|
|
1718
|
+
}
|
|
1719
|
+
}
|
|
1720
|
+
};
|
|
1721
|
+
|
|
1722
|
+
declare const tabs: {
|
|
1723
|
+
"name": "tabs",
|
|
1724
|
+
"key": "3e3af9f7f235cbcbbe862d5da552ab23e16ff34e",
|
|
1725
|
+
"componentPropertyDefinitions": {
|
|
1726
|
+
"Variant": {
|
|
1727
|
+
"type": "VARIANT",
|
|
1728
|
+
"variantOptions": [
|
|
1729
|
+
"Line",
|
|
1730
|
+
"Chip"
|
|
1731
|
+
]
|
|
1732
|
+
}
|
|
1733
|
+
}
|
|
1734
|
+
};
|
|
1735
|
+
|
|
1736
|
+
declare const tagGroup: {
|
|
1737
|
+
"name": "tagGroup",
|
|
1738
|
+
"key": "30d4c37f3bc5f292633cf0aba9a0b640d31ec301",
|
|
1739
|
+
"componentPropertyDefinitions": {
|
|
1740
|
+
"Size": {
|
|
1741
|
+
"type": "VARIANT",
|
|
1742
|
+
"variantOptions": [
|
|
1743
|
+
"t2(12pt)",
|
|
1744
|
+
"t3(13pt)",
|
|
1745
|
+
"t4(14pt)"
|
|
1746
|
+
]
|
|
1747
|
+
},
|
|
1748
|
+
"Tag Count": {
|
|
1749
|
+
"type": "VARIANT",
|
|
1750
|
+
"variantOptions": [
|
|
1751
|
+
"1",
|
|
1752
|
+
"2",
|
|
1753
|
+
"3",
|
|
1754
|
+
"4"
|
|
1755
|
+
]
|
|
1756
|
+
}
|
|
1757
|
+
}
|
|
1758
|
+
};
|
|
1759
|
+
|
|
1760
|
+
declare const toggleButton: {
|
|
1761
|
+
"name": "toggleButton",
|
|
1762
|
+
"key": "1d240ee5fd7a56879713e69cbea1b6f006f0ea22",
|
|
1763
|
+
"componentPropertyDefinitions": {
|
|
1764
|
+
"Label#6122:49": {
|
|
1765
|
+
"type": "TEXT"
|
|
1766
|
+
},
|
|
1767
|
+
"Prefix Icon#6122:98": {
|
|
1768
|
+
"type": "INSTANCE_SWAP",
|
|
1769
|
+
"preferredValues": []
|
|
1770
|
+
},
|
|
1771
|
+
"Show Suffix Icon#6122:147": {
|
|
1772
|
+
"type": "BOOLEAN"
|
|
1773
|
+
},
|
|
1774
|
+
"Suffix Icon#6122:343": {
|
|
1775
|
+
"type": "INSTANCE_SWAP",
|
|
1776
|
+
"preferredValues": []
|
|
1777
|
+
},
|
|
1778
|
+
"Show Prefix Icon#6122:392": {
|
|
1779
|
+
"type": "BOOLEAN"
|
|
1780
|
+
},
|
|
1781
|
+
"Size": {
|
|
1782
|
+
"type": "VARIANT",
|
|
1783
|
+
"variantOptions": [
|
|
1784
|
+
"Small",
|
|
1785
|
+
"XSmall"
|
|
1786
|
+
]
|
|
1787
|
+
},
|
|
1788
|
+
"Variant": {
|
|
1789
|
+
"type": "VARIANT",
|
|
1790
|
+
"variantOptions": [
|
|
1791
|
+
"Neutral Weak",
|
|
1792
|
+
"Brand Solid"
|
|
1793
|
+
]
|
|
1794
|
+
},
|
|
1795
|
+
"Selected": {
|
|
1796
|
+
"type": "VARIANT",
|
|
1797
|
+
"variantOptions": [
|
|
1798
|
+
"True",
|
|
1799
|
+
"False"
|
|
1800
|
+
]
|
|
1801
|
+
},
|
|
1802
|
+
"State": {
|
|
1803
|
+
"type": "VARIANT",
|
|
1804
|
+
"variantOptions": [
|
|
1805
|
+
"Enabled",
|
|
1806
|
+
"Pressed",
|
|
1807
|
+
"Loading",
|
|
1808
|
+
"Disabled"
|
|
1809
|
+
]
|
|
1810
|
+
}
|
|
1811
|
+
}
|
|
1812
|
+
};
|
|
1813
|
+
|
|
1814
|
+
declare const topNavigation: {
|
|
1815
|
+
"name": "topNavigation",
|
|
1816
|
+
"key": "f6d069d65f8ffc8b430fd8f3013910557f36e9da",
|
|
1817
|
+
"componentPropertyDefinitions": {
|
|
1818
|
+
"Show Title#33588:82": {
|
|
1819
|
+
"type": "BOOLEAN"
|
|
1820
|
+
},
|
|
1821
|
+
"OS (Figma Only)": {
|
|
1822
|
+
"type": "VARIANT",
|
|
1823
|
+
"variantOptions": [
|
|
1824
|
+
"iOS",
|
|
1825
|
+
"Android"
|
|
1826
|
+
]
|
|
1827
|
+
},
|
|
1828
|
+
"Variant": {
|
|
1829
|
+
"type": "VARIANT",
|
|
1830
|
+
"variantOptions": [
|
|
1831
|
+
"Layer Default",
|
|
1832
|
+
"Transparent"
|
|
1833
|
+
]
|
|
1834
|
+
},
|
|
1835
|
+
"Left": {
|
|
1836
|
+
"type": "VARIANT",
|
|
1837
|
+
"variantOptions": [
|
|
1838
|
+
"Back",
|
|
1839
|
+
"Close",
|
|
1840
|
+
"Custom",
|
|
1841
|
+
"None"
|
|
1842
|
+
]
|
|
1843
|
+
},
|
|
1844
|
+
"Right": {
|
|
1845
|
+
"type": "VARIANT",
|
|
1846
|
+
"variantOptions": [
|
|
1847
|
+
"1 Icon Button",
|
|
1848
|
+
"2 Icon Button",
|
|
1849
|
+
"3 Icon Button",
|
|
1850
|
+
"Text Button",
|
|
1851
|
+
"None"
|
|
1852
|
+
]
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1855
|
+
};
|
|
1856
|
+
|
|
1857
|
+
declare const actionButtonGhostButton: {
|
|
1858
|
+
"name": "actionButtonGhostButton",
|
|
1859
|
+
"key": "ea69291fb4d76217419f3d9613ae16aadafb56a5",
|
|
1860
|
+
"componentPropertyDefinitions": {
|
|
1861
|
+
"Label#30511:2": {
|
|
1862
|
+
"type": "TEXT"
|
|
1863
|
+
},
|
|
1864
|
+
"Prefix Icon#30511:3": {
|
|
1865
|
+
"type": "INSTANCE_SWAP",
|
|
1866
|
+
"preferredValues": []
|
|
1867
|
+
},
|
|
1868
|
+
"Suffix Icon#30525:0": {
|
|
1869
|
+
"type": "INSTANCE_SWAP",
|
|
1870
|
+
"preferredValues": [
|
|
1871
|
+
{
|
|
1872
|
+
"type": "COMPONENT_SET",
|
|
1873
|
+
"key": "c8415f85843e5aea5a1d3620d03d16b643bf86cd"
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
"type": "COMPONENT_SET",
|
|
1877
|
+
"key": "0d0a2bc648a2c4e1f06a56a30ef16299b6e91037"
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
"type": "COMPONENT_SET",
|
|
1881
|
+
"key": "8f28ae559baf8f388d84ccc3ad65a282966e1b05"
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
"type": "COMPONENT_SET",
|
|
1885
|
+
"key": "57341e8a9961bf31590240dd288e57c76969098d"
|
|
1886
|
+
}
|
|
1887
|
+
]
|
|
1888
|
+
},
|
|
1889
|
+
"Icon#30525:15": {
|
|
1890
|
+
"type": "INSTANCE_SWAP",
|
|
1891
|
+
"preferredValues": []
|
|
1892
|
+
},
|
|
1893
|
+
"Bleed": {
|
|
1894
|
+
"type": "VARIANT",
|
|
1895
|
+
"variantOptions": [
|
|
1896
|
+
"true",
|
|
1897
|
+
"false"
|
|
1898
|
+
]
|
|
1899
|
+
},
|
|
1900
|
+
"Size": {
|
|
1901
|
+
"type": "VARIANT",
|
|
1902
|
+
"variantOptions": [
|
|
1903
|
+
"Xsmall",
|
|
1904
|
+
"Small",
|
|
1905
|
+
"Medium",
|
|
1906
|
+
"Large"
|
|
1907
|
+
]
|
|
1908
|
+
},
|
|
1909
|
+
"Layout": {
|
|
1910
|
+
"type": "VARIANT",
|
|
1911
|
+
"variantOptions": [
|
|
1912
|
+
"Text Only",
|
|
1913
|
+
"Icon First",
|
|
1914
|
+
"Icon Last",
|
|
1915
|
+
"Icon Only"
|
|
1916
|
+
]
|
|
1917
|
+
},
|
|
1918
|
+
"State": {
|
|
1919
|
+
"type": "VARIANT",
|
|
1920
|
+
"variantOptions": [
|
|
1921
|
+
"Enabled",
|
|
1922
|
+
"Pressed",
|
|
1923
|
+
"Loading",
|
|
1924
|
+
"Disabled"
|
|
1925
|
+
]
|
|
1926
|
+
}
|
|
1927
|
+
}
|
|
1928
|
+
};
|
|
1929
|
+
|
|
1930
|
+
type ActionButtonProperties = InferComponentDefinition<typeof actionButton.componentPropertyDefinitions>;
|
|
1931
|
+
type ActionButtonGhostProperties = InferComponentDefinition<typeof actionButtonGhostButton.componentPropertyDefinitions>;
|
|
1932
|
+
type AlertDialogProperties = InferComponentDefinition<typeof alertDialog.componentPropertyDefinitions>;
|
|
1933
|
+
type AlertDialogFooterProperties = InferComponentDefinition<{
|
|
1934
|
+
Type: {
|
|
1935
|
+
type: "VARIANT";
|
|
1936
|
+
defaultValue: "Single";
|
|
1937
|
+
variantOptions: [
|
|
1938
|
+
"Single",
|
|
1939
|
+
"Neutral",
|
|
1940
|
+
"Neutral (Overflow)",
|
|
1941
|
+
"Critical",
|
|
1942
|
+
"Critical (Overflow)",
|
|
1943
|
+
"Nonpreferred"
|
|
1944
|
+
];
|
|
1945
|
+
};
|
|
1946
|
+
}>;
|
|
1947
|
+
type AvatarProperties = InferComponentDefinition<typeof avatar.componentPropertyDefinitions>;
|
|
1948
|
+
type AvatarStackProperties = InferComponentDefinition<typeof avatarStack.componentPropertyDefinitions>;
|
|
1949
|
+
type BadgeProperties = InferComponentDefinition<typeof badge.componentPropertyDefinitions>;
|
|
1950
|
+
type BottomSheetProperties = InferComponentDefinition<typeof bottomSheet.componentPropertyDefinitions>;
|
|
1951
|
+
type CalloutProperties = InferComponentDefinition<typeof callout.componentPropertyDefinitions>;
|
|
1952
|
+
type CheckboxProperties = InferComponentDefinition<typeof checkbox.componentPropertyDefinitions>;
|
|
1953
|
+
type CheckmarkProperties = InferComponentDefinition<typeof checkmark.componentPropertyDefinitions>;
|
|
1954
|
+
type ChipProperties = InferComponentDefinition<typeof chip.componentPropertyDefinitions>;
|
|
1955
|
+
type ChipIconSuffixProperties = InferComponentDefinition<{
|
|
1956
|
+
"Icon#33203:0": {
|
|
1957
|
+
type: "INSTANCE_SWAP";
|
|
1958
|
+
defaultValue: "26621:23250";
|
|
1959
|
+
preferredValues: [];
|
|
1960
|
+
};
|
|
1961
|
+
}>;
|
|
1962
|
+
type ContextualFloatingButtonProperties = InferComponentDefinition<typeof contextualFloatingButton.componentPropertyDefinitions>;
|
|
1963
|
+
type DividerProperties = InferComponentDefinition<typeof divider.componentPropertyDefinitions>;
|
|
1964
|
+
type FieldHeaderProperties = InferComponentDefinition<{
|
|
1965
|
+
"Label#34796:0": {
|
|
1966
|
+
type: "TEXT";
|
|
1967
|
+
defaultValue: "라벨";
|
|
1968
|
+
};
|
|
1969
|
+
"Has Indicator#34796:1": {
|
|
1970
|
+
type: "BOOLEAN";
|
|
1971
|
+
defaultValue: false;
|
|
1972
|
+
};
|
|
1973
|
+
"Has Suffix#34796:2": {
|
|
1974
|
+
type: "BOOLEAN";
|
|
1975
|
+
defaultValue: false;
|
|
1976
|
+
};
|
|
1977
|
+
Weight: {
|
|
1978
|
+
type: "VARIANT";
|
|
1979
|
+
defaultValue: "Medium";
|
|
1980
|
+
variantOptions: ["Medium", "Bold"];
|
|
1981
|
+
};
|
|
1982
|
+
}>;
|
|
1983
|
+
type FieldIndicatorProperties = InferComponentDefinition<{
|
|
1984
|
+
"Required Label#40606:3": {
|
|
1985
|
+
type: "TEXT";
|
|
1986
|
+
defaultValue: "선택";
|
|
1987
|
+
};
|
|
1988
|
+
Type: {
|
|
1989
|
+
type: "VARIANT";
|
|
1990
|
+
defaultValue: "Required Mark";
|
|
1991
|
+
variantOptions: ["Required Mark", "Text"];
|
|
1992
|
+
};
|
|
1993
|
+
}>;
|
|
1994
|
+
type FieldFooterProperties = InferComponentDefinition<{
|
|
1995
|
+
"Text#2770:0": {
|
|
1996
|
+
type: "TEXT";
|
|
1997
|
+
defaultValue: "도움말 텍스트 입력";
|
|
1998
|
+
};
|
|
1999
|
+
"Has Prefix#2778:13": {
|
|
2000
|
+
type: "BOOLEAN";
|
|
2001
|
+
defaultValue: false;
|
|
2002
|
+
};
|
|
2003
|
+
"Error Text#32821:0": {
|
|
2004
|
+
type: "TEXT";
|
|
2005
|
+
defaultValue: "에러 메시지 입력";
|
|
2006
|
+
};
|
|
2007
|
+
Type: {
|
|
2008
|
+
type: "VARIANT";
|
|
2009
|
+
defaultValue: "Description With Character Count";
|
|
2010
|
+
variantOptions: ["Description", "Description With Character Count", "Character Count"];
|
|
2011
|
+
};
|
|
2012
|
+
Error: {
|
|
2013
|
+
type: "VARIANT";
|
|
2014
|
+
defaultValue: "false";
|
|
2015
|
+
variantOptions: ["true", "false"];
|
|
2016
|
+
};
|
|
2017
|
+
}>;
|
|
2018
|
+
type FieldCharacterCountProperties = InferComponentDefinition<{
|
|
2019
|
+
"Counter#40960:0": {
|
|
2020
|
+
type: "TEXT";
|
|
2021
|
+
defaultValue: "10";
|
|
2022
|
+
};
|
|
2023
|
+
"Max Count#40960:4": {
|
|
2024
|
+
type: "TEXT";
|
|
2025
|
+
defaultValue: "500";
|
|
2026
|
+
};
|
|
2027
|
+
State: {
|
|
2028
|
+
type: "VARIANT";
|
|
2029
|
+
defaultValue: "Null";
|
|
2030
|
+
variantOptions: ["Null", "Has Value", "Error"];
|
|
2031
|
+
};
|
|
2032
|
+
}>;
|
|
2033
|
+
type MenuSheetProperties = InferComponentDefinition<typeof menuSheet.componentPropertyDefinitions>;
|
|
2034
|
+
type MenuSheetGroupProperties = InferComponentDefinition<{
|
|
2035
|
+
"Action Count": {
|
|
2036
|
+
type: "VARIANT";
|
|
2037
|
+
defaultValue: "8";
|
|
2038
|
+
variantOptions: ["1", "2", "3", "4", "5", "6", "7", "8"];
|
|
2039
|
+
};
|
|
2040
|
+
}>;
|
|
2041
|
+
type MenuSheetItemProperties = InferComponentDefinition<{
|
|
2042
|
+
"Show Prefix Icon#17043:5": {
|
|
2043
|
+
type: "BOOLEAN";
|
|
2044
|
+
defaultValue: true;
|
|
2045
|
+
};
|
|
2046
|
+
"Sub Text#51411:0": {
|
|
2047
|
+
type: "TEXT";
|
|
2048
|
+
defaultValue: "설명을 입력해주세요.";
|
|
2049
|
+
};
|
|
2050
|
+
"Show Item Description#51411:19": {
|
|
2051
|
+
type: "BOOLEAN";
|
|
2052
|
+
defaultValue: false;
|
|
2053
|
+
};
|
|
2054
|
+
"Label#55905:8": {
|
|
2055
|
+
type: "TEXT";
|
|
2056
|
+
defaultValue: "라벨";
|
|
2057
|
+
};
|
|
2058
|
+
"Prefix Icon#55948:0": {
|
|
2059
|
+
type: "INSTANCE_SWAP";
|
|
2060
|
+
defaultValue: "26621:23245";
|
|
2061
|
+
preferredValues: [];
|
|
2062
|
+
};
|
|
2063
|
+
Tone: {
|
|
2064
|
+
type: "VARIANT";
|
|
2065
|
+
defaultValue: "Neutral";
|
|
2066
|
+
variantOptions: ["Neutral", "Critical"];
|
|
2067
|
+
};
|
|
2068
|
+
State: {
|
|
2069
|
+
type: "VARIANT";
|
|
2070
|
+
defaultValue: "Enabled";
|
|
2071
|
+
variantOptions: ["Enabled", "Pressed", "Disabled"];
|
|
2072
|
+
};
|
|
2073
|
+
Layout: {
|
|
2074
|
+
type: "VARIANT";
|
|
2075
|
+
defaultValue: "Text Only";
|
|
2076
|
+
variantOptions: ["Text Only", "Text with Icon"];
|
|
2077
|
+
};
|
|
2078
|
+
}>;
|
|
2079
|
+
type FloatingActionButtonProperties = InferComponentDefinition<typeof floatingActionButton.componentPropertyDefinitions>;
|
|
2080
|
+
type FloatingActionButtonButtonItemProperties = InferComponentDefinition<{
|
|
2081
|
+
"Icon#29766:18": {
|
|
2082
|
+
type: "INSTANCE_SWAP";
|
|
2083
|
+
defaultValue: "26621:24681";
|
|
2084
|
+
preferredValues: [];
|
|
2085
|
+
};
|
|
2086
|
+
"Label#29808:0": {
|
|
2087
|
+
type: "TEXT";
|
|
2088
|
+
defaultValue: "라벨";
|
|
2089
|
+
};
|
|
2090
|
+
State: {
|
|
2091
|
+
type: "VARIANT";
|
|
2092
|
+
defaultValue: "Enabled";
|
|
2093
|
+
variantOptions: ["Enabled", "Pressed"];
|
|
2094
|
+
};
|
|
2095
|
+
Extended: {
|
|
2096
|
+
type: "VARIANT";
|
|
2097
|
+
defaultValue: "True";
|
|
2098
|
+
variantOptions: ["True", "False"];
|
|
2099
|
+
};
|
|
2100
|
+
}>;
|
|
2101
|
+
type FloatingActionButtonMenuItemProperties = InferComponentDefinition<{
|
|
2102
|
+
"Icon#29766:0": {
|
|
2103
|
+
type: "INSTANCE_SWAP";
|
|
2104
|
+
defaultValue: "26621:24681";
|
|
2105
|
+
preferredValues: [];
|
|
2106
|
+
};
|
|
2107
|
+
"Label#29766:9": {
|
|
2108
|
+
type: "TEXT";
|
|
2109
|
+
defaultValue: "라벨";
|
|
2110
|
+
};
|
|
2111
|
+
State: {
|
|
2112
|
+
type: "VARIANT";
|
|
2113
|
+
defaultValue: "Enabled";
|
|
2114
|
+
variantOptions: ["Pressed", "Enabled"];
|
|
2115
|
+
};
|
|
2116
|
+
Extended: {
|
|
2117
|
+
type: "VARIANT";
|
|
2118
|
+
defaultValue: "True";
|
|
2119
|
+
variantOptions: ["True", "False"];
|
|
2120
|
+
};
|
|
2121
|
+
Open: {
|
|
2122
|
+
type: "VARIANT";
|
|
2123
|
+
defaultValue: "False";
|
|
2124
|
+
variantOptions: ["True", "False"];
|
|
2125
|
+
};
|
|
2126
|
+
}>;
|
|
2127
|
+
type HelpBubbleProperties = InferComponentDefinition<typeof helpBubble.componentPropertyDefinitions>;
|
|
2128
|
+
type IdentityPlaceholderProperties = InferComponentDefinition<{
|
|
2129
|
+
Identity: {
|
|
2130
|
+
type: "VARIANT";
|
|
2131
|
+
defaultValue: "Person";
|
|
2132
|
+
variantOptions: ["Person", "Business"];
|
|
2133
|
+
};
|
|
2134
|
+
}>;
|
|
2135
|
+
type PageBannerProperties = InferComponentDefinition<typeof pageBanner.componentPropertyDefinitions>;
|
|
2136
|
+
type PageBannerButtonProperties = InferComponentDefinition<{
|
|
2137
|
+
"Label#39890:0": {
|
|
2138
|
+
type: "TEXT";
|
|
2139
|
+
defaultValue: "라벨";
|
|
2140
|
+
};
|
|
2141
|
+
}>;
|
|
2142
|
+
type ListHeaderProperties = InferComponentDefinition<typeof listHeader.componentPropertyDefinitions>;
|
|
2143
|
+
type ListItemProperties = InferComponentDefinition<typeof listItem.componentPropertyDefinitions>;
|
|
2144
|
+
type ListItemPrefixIconProperties = InferComponentDefinition<{
|
|
2145
|
+
"Icon#28452:111": {
|
|
2146
|
+
type: "INSTANCE_SWAP";
|
|
2147
|
+
defaultValue: "34885:102336";
|
|
2148
|
+
preferredValues: [{
|
|
2149
|
+
type: "COMPONENT_SET";
|
|
2150
|
+
key: "1449adc3a216979ac3e6a4a99183a9e9790b220c";
|
|
2151
|
+
}];
|
|
2152
|
+
};
|
|
2153
|
+
}>;
|
|
2154
|
+
type ListItemSuffixIconProperties = InferComponentDefinition<{
|
|
2155
|
+
"Icon#28347:9": {
|
|
2156
|
+
type: "INSTANCE_SWAP";
|
|
2157
|
+
defaultValue: "26621:23412";
|
|
2158
|
+
preferredValues: [];
|
|
2159
|
+
};
|
|
2160
|
+
}>;
|
|
2161
|
+
type MannerTempProperties = InferComponentDefinition<typeof mannerTemp.componentPropertyDefinitions>;
|
|
2162
|
+
type MannerTempBadgeProperties = InferComponentDefinition<typeof mannerTempBadge.componentPropertyDefinitions>;
|
|
2163
|
+
type ProgressCircleProperties = InferComponentDefinition<typeof progressCircle.componentPropertyDefinitions>;
|
|
2164
|
+
type RadioProperties = InferComponentDefinition<typeof radio.componentPropertyDefinitions>;
|
|
2165
|
+
type RadiomarkProperties = InferComponentDefinition<typeof radiomark.componentPropertyDefinitions>;
|
|
2166
|
+
type ReactionButtonProperties = InferComponentDefinition<typeof reactionButton.componentPropertyDefinitions>;
|
|
2167
|
+
type ResultSectionProperties = InferComponentDefinition<typeof resultSection.componentPropertyDefinitions>;
|
|
2168
|
+
type SegmentedControlProperties = InferComponentDefinition<typeof segmentedControl.componentPropertyDefinitions>;
|
|
2169
|
+
type SegmentedControlItemProperties = InferComponentDefinition<{
|
|
2170
|
+
"Label#11366:15": {
|
|
2171
|
+
type: "TEXT";
|
|
2172
|
+
defaultValue: "라벨";
|
|
2173
|
+
};
|
|
2174
|
+
State: {
|
|
2175
|
+
type: "VARIANT";
|
|
2176
|
+
defaultValue: "Enabled";
|
|
2177
|
+
variantOptions: ["Enabled", "Pressed", "Selected", "Disabled", "Disabled-Selected"];
|
|
2178
|
+
};
|
|
2179
|
+
}>;
|
|
2180
|
+
type SkeletonProperties = InferComponentDefinition<typeof skeleton.componentPropertyDefinitions>;
|
|
2181
|
+
type SliderProperties = InferComponentDefinition<typeof slider.componentPropertyDefinitions>;
|
|
2182
|
+
type SliderTicksProperties = InferComponentDefinition<{
|
|
2183
|
+
Type: {
|
|
2184
|
+
type: "VARIANT";
|
|
2185
|
+
defaultValue: "Continuous";
|
|
2186
|
+
variantOptions: ["Continuous", "Discrete"];
|
|
2187
|
+
};
|
|
2188
|
+
Step: {
|
|
2189
|
+
type: "VARIANT";
|
|
2190
|
+
defaultValue: "2";
|
|
2191
|
+
variantOptions: ["2", "3", "4", "5"];
|
|
2192
|
+
};
|
|
2193
|
+
}>;
|
|
2194
|
+
type SliderFieldProperties = InferComponentDefinition<typeof templateSliderField.componentPropertyDefinitions>;
|
|
2195
|
+
type SnackbarProperties = InferComponentDefinition<typeof snackbar.componentPropertyDefinitions>;
|
|
2196
|
+
type SwitchProperties = InferComponentDefinition<typeof _switch.componentPropertyDefinitions>;
|
|
2197
|
+
type SwitchmarkProperties = InferComponentDefinition<typeof switchmark.componentPropertyDefinitions>;
|
|
2198
|
+
type ToggleButtonProperties = InferComponentDefinition<typeof toggleButton.componentPropertyDefinitions>;
|
|
2199
|
+
type AppBarProperties = InferComponentDefinition<typeof topNavigation.componentPropertyDefinitions>;
|
|
2200
|
+
type AppBarMainProperties = InferComponentDefinition<{
|
|
2201
|
+
"Title#16944:0": {
|
|
2202
|
+
type: "TEXT";
|
|
2203
|
+
defaultValue: "타이틀";
|
|
2204
|
+
};
|
|
2205
|
+
"Logo#16958:5": {
|
|
2206
|
+
type: "INSTANCE_SWAP";
|
|
2207
|
+
defaultValue: "1574:3942";
|
|
2208
|
+
preferredValues: [
|
|
2209
|
+
{
|
|
2210
|
+
type: "COMPONENT_SET";
|
|
2211
|
+
key: "c7dab3f6d0df0a150564e696c0df00bd43ffef3f";
|
|
2212
|
+
}
|
|
2213
|
+
];
|
|
2214
|
+
};
|
|
2215
|
+
"Subtitle#16958:9": {
|
|
2216
|
+
type: "TEXT";
|
|
2217
|
+
defaultValue: "서브타이틀";
|
|
2218
|
+
};
|
|
2219
|
+
"Show Right#16958:13": {
|
|
2220
|
+
type: "BOOLEAN";
|
|
2221
|
+
defaultValue: false;
|
|
2222
|
+
};
|
|
2223
|
+
"Show Left#16958:17": {
|
|
2224
|
+
type: "BOOLEAN";
|
|
2225
|
+
defaultValue: false;
|
|
2226
|
+
};
|
|
2227
|
+
Type: {
|
|
2228
|
+
type: "VARIANT";
|
|
2229
|
+
defaultValue: "Title";
|
|
2230
|
+
variantOptions: ["Title", "Title-Subtitle", "Logo (Figma Only)"];
|
|
2231
|
+
};
|
|
2232
|
+
}>;
|
|
2233
|
+
type AppBarLeftIconButtonProperties = InferComponentDefinition<{
|
|
2234
|
+
"Icon#33580:0": {
|
|
2235
|
+
type: "INSTANCE_SWAP";
|
|
2236
|
+
defaultValue: "26621:23427";
|
|
2237
|
+
preferredValues: [];
|
|
2238
|
+
};
|
|
2239
|
+
}>;
|
|
2240
|
+
type AppBarRightIconButtonProperties = InferComponentDefinition<{
|
|
2241
|
+
"Icon#6406:3": {
|
|
2242
|
+
type: "INSTANCE_SWAP";
|
|
2243
|
+
defaultValue: "34885:102301";
|
|
2244
|
+
preferredValues: [
|
|
2245
|
+
{
|
|
2246
|
+
type: "COMPONENT_SET";
|
|
2247
|
+
key: "bc7bc98e19d8ffdd9efdc94b610c6af28156f867";
|
|
2248
|
+
},
|
|
2249
|
+
{
|
|
2250
|
+
type: "COMPONENT_SET";
|
|
2251
|
+
key: "d766c026e52ee6c78cbf1a474068264e831ddfe3";
|
|
2252
|
+
},
|
|
2253
|
+
{
|
|
2254
|
+
type: "COMPONENT_SET";
|
|
2255
|
+
key: "a4cb85e4d25a320d27a48c3e8132a6c01b45ab3c";
|
|
2256
|
+
},
|
|
2257
|
+
{
|
|
2258
|
+
type: "COMPONENT_SET";
|
|
2259
|
+
key: "e262d9b447adff63d15a6f1af60ae47cbc1ca47f";
|
|
2260
|
+
},
|
|
2261
|
+
{
|
|
2262
|
+
type: "COMPONENT_SET";
|
|
2263
|
+
key: "1d3918afcac320eff3aafc2719b98cf5141afa55";
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
type: "COMPONENT_SET";
|
|
2267
|
+
key: "8ed05ef62a40f2dc034ee7eb6945bd0e63ad49aa";
|
|
2268
|
+
},
|
|
2269
|
+
{
|
|
2270
|
+
type: "COMPONENT_SET";
|
|
2271
|
+
key: "98ee886122c725ac9e3e682f31efd1d1a1bec90d";
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
type: "COMPONENT_SET";
|
|
2275
|
+
key: "bf71b0c5c8664149298fe1b3c58905715a523e19";
|
|
2276
|
+
},
|
|
2277
|
+
{
|
|
2278
|
+
type: "COMPONENT_SET";
|
|
2279
|
+
key: "47a8df3d59bc52aef1c584d992c05771a8125965";
|
|
2280
|
+
},
|
|
2281
|
+
{
|
|
2282
|
+
type: "COMPONENT_SET";
|
|
2283
|
+
key: "0fcbc3c123d5c7ee7a5dd20e0860ee25bdc19e30";
|
|
2284
|
+
}
|
|
2285
|
+
];
|
|
2286
|
+
};
|
|
2287
|
+
Notification: {
|
|
2288
|
+
type: "VARIANT";
|
|
2289
|
+
defaultValue: "False";
|
|
2290
|
+
variantOptions: ["False", "True"];
|
|
2291
|
+
};
|
|
2292
|
+
}>;
|
|
2293
|
+
type TabsProperties = InferComponentDefinition<typeof tabs.componentPropertyDefinitions>;
|
|
2294
|
+
type TabsLineWrapperProperties = InferComponentDefinition<{
|
|
2295
|
+
Size: {
|
|
2296
|
+
type: "VARIANT";
|
|
2297
|
+
defaultValue: "Medium";
|
|
2298
|
+
variantOptions: ["Medium", "Small"];
|
|
2299
|
+
};
|
|
2300
|
+
Layout: {
|
|
2301
|
+
type: "VARIANT";
|
|
2302
|
+
defaultValue: "Fill";
|
|
2303
|
+
variantOptions: ["Hug", "Fill"];
|
|
2304
|
+
};
|
|
2305
|
+
}>;
|
|
2306
|
+
type TabsLineTriggerHugProperties = InferComponentDefinition<{
|
|
2307
|
+
"Label#4478:2": {
|
|
2308
|
+
type: "TEXT";
|
|
2309
|
+
defaultValue: "라벨";
|
|
2310
|
+
};
|
|
2311
|
+
"Has Notification#32892:0": {
|
|
2312
|
+
type: "BOOLEAN";
|
|
2313
|
+
defaultValue: false;
|
|
2314
|
+
};
|
|
2315
|
+
Size: {
|
|
2316
|
+
type: "VARIANT";
|
|
2317
|
+
defaultValue: "Small";
|
|
2318
|
+
variantOptions: ["Medium", "Small"];
|
|
2319
|
+
};
|
|
2320
|
+
State: {
|
|
2321
|
+
type: "VARIANT";
|
|
2322
|
+
defaultValue: "Selected";
|
|
2323
|
+
variantOptions: ["Enabled", "Selected", "Disabled"];
|
|
2324
|
+
};
|
|
2325
|
+
}>;
|
|
2326
|
+
type TabsLineTriggerFillProperties = InferComponentDefinition<{
|
|
2327
|
+
"Label#4478:2": {
|
|
2328
|
+
type: "TEXT";
|
|
2329
|
+
defaultValue: "라벨";
|
|
2330
|
+
};
|
|
2331
|
+
"Has Notification#32904:13": {
|
|
2332
|
+
type: "BOOLEAN";
|
|
2333
|
+
defaultValue: false;
|
|
2334
|
+
};
|
|
2335
|
+
Size: {
|
|
2336
|
+
type: "VARIANT";
|
|
2337
|
+
defaultValue: "Small";
|
|
2338
|
+
variantOptions: ["Medium", "Small"];
|
|
2339
|
+
};
|
|
2340
|
+
State: {
|
|
2341
|
+
type: "VARIANT";
|
|
2342
|
+
defaultValue: "Selected";
|
|
2343
|
+
variantOptions: ["Enabled", "Selected", "Disabled"];
|
|
2344
|
+
};
|
|
2345
|
+
}>;
|
|
2346
|
+
type TabsChipWrapperProperties = InferComponentDefinition<{
|
|
2347
|
+
Size: {
|
|
2348
|
+
type: "VARIANT";
|
|
2349
|
+
defaultValue: "Large";
|
|
2350
|
+
variantOptions: ["Medium", "Large"];
|
|
2351
|
+
};
|
|
2352
|
+
Variant: {
|
|
2353
|
+
type: "VARIANT";
|
|
2354
|
+
defaultValue: "Solid";
|
|
2355
|
+
variantOptions: ["Solid", "Outline"];
|
|
2356
|
+
};
|
|
2357
|
+
}>;
|
|
2358
|
+
type ChipTabsTriggerProperties = InferComponentDefinition<{
|
|
2359
|
+
Size: {
|
|
2360
|
+
type: "VARIANT";
|
|
2361
|
+
defaultValue: "Medium";
|
|
2362
|
+
variantOptions: ["Medium", "Large"];
|
|
2363
|
+
};
|
|
2364
|
+
Variant: {
|
|
2365
|
+
type: "VARIANT";
|
|
2366
|
+
defaultValue: "Solid";
|
|
2367
|
+
variantOptions: ["Outline", "Solid"];
|
|
2368
|
+
};
|
|
2369
|
+
State: {
|
|
2370
|
+
type: "VARIANT";
|
|
2371
|
+
defaultValue: "Selected";
|
|
2372
|
+
variantOptions: ["Enabled", "Selected", "Disabled"];
|
|
2373
|
+
};
|
|
2374
|
+
"Has Notification": {
|
|
2375
|
+
type: "VARIANT";
|
|
2376
|
+
defaultValue: "False";
|
|
2377
|
+
variantOptions: ["False", "True"];
|
|
2378
|
+
};
|
|
2379
|
+
}>;
|
|
2380
|
+
type TagGroupProperties = InferComponentDefinition<typeof tagGroup.componentPropertyDefinitions>;
|
|
2381
|
+
type TagGroupItemProperties = InferComponentDefinition<{
|
|
2382
|
+
"Label#5409:0": {
|
|
2383
|
+
type: "TEXT";
|
|
2384
|
+
defaultValue: "라벨";
|
|
2385
|
+
};
|
|
2386
|
+
"Prefix Icon#47948:0": {
|
|
2387
|
+
type: "INSTANCE_SWAP";
|
|
2388
|
+
defaultValue: "26621:23540";
|
|
2389
|
+
preferredValues: [];
|
|
2390
|
+
};
|
|
2391
|
+
"Suffix Icon#47948:55": {
|
|
2392
|
+
type: "INSTANCE_SWAP";
|
|
2393
|
+
defaultValue: "27053:2268";
|
|
2394
|
+
preferredValues: [];
|
|
2395
|
+
};
|
|
2396
|
+
Size: {
|
|
2397
|
+
type: "VARIANT";
|
|
2398
|
+
defaultValue: "t2(12pt)";
|
|
2399
|
+
variantOptions: ["t2(12pt)", "t3(13pt)", "t4(14pt)"];
|
|
2400
|
+
};
|
|
2401
|
+
Layout: {
|
|
2402
|
+
type: "VARIANT";
|
|
2403
|
+
defaultValue: "Text Only";
|
|
2404
|
+
variantOptions: ["Text Only", "Icon First", "Icon Last"];
|
|
2405
|
+
};
|
|
2406
|
+
Tone: {
|
|
2407
|
+
type: "VARIANT";
|
|
2408
|
+
defaultValue: "Neutral Subtle";
|
|
2409
|
+
variantOptions: ["Neutral Subtle", "Brand", "Neutral"];
|
|
2410
|
+
};
|
|
2411
|
+
Weight: {
|
|
2412
|
+
type: "VARIANT";
|
|
2413
|
+
defaultValue: "Regular";
|
|
2414
|
+
variantOptions: ["Regular", "Bold"];
|
|
2415
|
+
};
|
|
2416
|
+
}>;
|
|
2417
|
+
type TextInputFieldProperties = InferComponentDefinition<typeof templateTextField.componentPropertyDefinitions>;
|
|
2418
|
+
type TextInputOutlineProperties = InferComponentDefinition<{
|
|
2419
|
+
"Has Prefix#32514:10": {
|
|
2420
|
+
type: "BOOLEAN";
|
|
2421
|
+
defaultValue: false;
|
|
2422
|
+
};
|
|
2423
|
+
"Loading Text#32734:0": {
|
|
2424
|
+
type: "TEXT";
|
|
2425
|
+
defaultValue: "단서를 모아서 추리 중...";
|
|
2426
|
+
};
|
|
2427
|
+
"Has Suffix#32865:68": {
|
|
2428
|
+
type: "BOOLEAN";
|
|
2429
|
+
defaultValue: false;
|
|
2430
|
+
};
|
|
2431
|
+
State: {
|
|
2432
|
+
type: "VARIANT";
|
|
2433
|
+
defaultValue: "Enabled";
|
|
2434
|
+
variantOptions: [
|
|
2435
|
+
"Enabled",
|
|
2436
|
+
"Focused",
|
|
2437
|
+
"Error",
|
|
2438
|
+
"Error Focused",
|
|
2439
|
+
"Disabled",
|
|
2440
|
+
"Read Only",
|
|
2441
|
+
"AI Loading (Figma Only)"
|
|
2442
|
+
];
|
|
2443
|
+
};
|
|
2444
|
+
}>;
|
|
2445
|
+
type TextInputOutlinePrefixProperties = InferComponentDefinition<{
|
|
2446
|
+
"Icon#34021:2": {
|
|
2447
|
+
type: "INSTANCE_SWAP";
|
|
2448
|
+
defaultValue: "32633:80013";
|
|
2449
|
+
preferredValues: [];
|
|
2450
|
+
};
|
|
2451
|
+
Type: {
|
|
2452
|
+
type: "VARIANT";
|
|
2453
|
+
defaultValue: "Icon";
|
|
2454
|
+
variantOptions: ["Icon", "Custom (Figma Only)"];
|
|
2455
|
+
};
|
|
2456
|
+
}>;
|
|
2457
|
+
type TextInputOutlineSuffixProperties = InferComponentDefinition<{
|
|
2458
|
+
"Suffix Text#34021:4": {
|
|
2459
|
+
type: "TEXT";
|
|
2460
|
+
defaultValue: "원";
|
|
2461
|
+
};
|
|
2462
|
+
"Icon#45391:0": {
|
|
2463
|
+
type: "INSTANCE_SWAP";
|
|
2464
|
+
defaultValue: "34885:102331";
|
|
2465
|
+
preferredValues: [];
|
|
2466
|
+
};
|
|
2467
|
+
"Type (Figma Only)": {
|
|
2468
|
+
type: "VARIANT";
|
|
2469
|
+
defaultValue: "Text";
|
|
2470
|
+
variantOptions: ["Text", "Icon", "Icon Button (Ghost Button)", "Custom"];
|
|
2471
|
+
};
|
|
2472
|
+
}>;
|
|
2473
|
+
type TextInputUnderlinePrefixProperties = InferComponentDefinition<{
|
|
2474
|
+
"Icon#34021:2": {
|
|
2475
|
+
type: "INSTANCE_SWAP";
|
|
2476
|
+
defaultValue: "32633:80013";
|
|
2477
|
+
preferredValues: [];
|
|
2478
|
+
};
|
|
2479
|
+
Type: {
|
|
2480
|
+
type: "VARIANT";
|
|
2481
|
+
defaultValue: "Icon";
|
|
2482
|
+
variantOptions: ["Icon", "Custom (Figma Only)"];
|
|
2483
|
+
};
|
|
2484
|
+
}>;
|
|
2485
|
+
type TextInputUnderlineSuffixProperties = InferComponentDefinition<{
|
|
2486
|
+
"Suffix Text#34021:4": {
|
|
2487
|
+
type: "TEXT";
|
|
2488
|
+
defaultValue: "원";
|
|
2489
|
+
};
|
|
2490
|
+
"Icon#45391:5": {
|
|
2491
|
+
type: "INSTANCE_SWAP";
|
|
2492
|
+
defaultValue: "34885:102331";
|
|
2493
|
+
preferredValues: [];
|
|
2494
|
+
};
|
|
2495
|
+
"Type (Figma Only)": {
|
|
2496
|
+
type: "VARIANT";
|
|
2497
|
+
defaultValue: "Text";
|
|
2498
|
+
variantOptions: ["Text", "Icon", "Icon Button (Ghost Button)", "Custom"];
|
|
2499
|
+
};
|
|
2500
|
+
}>;
|
|
2501
|
+
type TextInputUnderlineProperties = InferComponentDefinition<{
|
|
2502
|
+
"Show Footer#33213:14": {
|
|
2503
|
+
type: "BOOLEAN";
|
|
2504
|
+
defaultValue: true;
|
|
2505
|
+
};
|
|
2506
|
+
"Has Prefix#34125:0": {
|
|
2507
|
+
type: "BOOLEAN";
|
|
2508
|
+
defaultValue: false;
|
|
2509
|
+
};
|
|
2510
|
+
"Has Suffix#34125:8": {
|
|
2511
|
+
type: "BOOLEAN";
|
|
2512
|
+
defaultValue: false;
|
|
2513
|
+
};
|
|
2514
|
+
"Show Header#34125:16": {
|
|
2515
|
+
type: "BOOLEAN";
|
|
2516
|
+
defaultValue: false;
|
|
2517
|
+
};
|
|
2518
|
+
State: {
|
|
2519
|
+
type: "VARIANT";
|
|
2520
|
+
defaultValue: "Enabled";
|
|
2521
|
+
variantOptions: [
|
|
2522
|
+
"Enabled",
|
|
2523
|
+
"Focused",
|
|
2524
|
+
"Error",
|
|
2525
|
+
"Error Focused",
|
|
2526
|
+
"Disabled",
|
|
2527
|
+
"Read Only",
|
|
2528
|
+
"AI Loading (Figma Only)"
|
|
2529
|
+
];
|
|
2530
|
+
};
|
|
2531
|
+
}>;
|
|
2532
|
+
type TextareaFieldProperties = InferComponentDefinition<typeof templateTextareaField.componentPropertyDefinitions>;
|
|
2533
|
+
type TextareaProperties = InferComponentDefinition<{
|
|
2534
|
+
"Auto Size (Figma Only)": {
|
|
2535
|
+
type: "VARIANT";
|
|
2536
|
+
defaultValue: "true";
|
|
2537
|
+
variantOptions: ["true", "false"];
|
|
2538
|
+
};
|
|
2539
|
+
State: {
|
|
2540
|
+
type: "VARIANT";
|
|
2541
|
+
defaultValue: "Enabled";
|
|
2542
|
+
variantOptions: [
|
|
2543
|
+
"Enabled",
|
|
2544
|
+
"Focused",
|
|
2545
|
+
"Error",
|
|
2546
|
+
"Error Focused",
|
|
2547
|
+
"Disabled",
|
|
2548
|
+
"Read Only",
|
|
2549
|
+
"AI Loading (Figma Only)"
|
|
2550
|
+
];
|
|
2551
|
+
};
|
|
2552
|
+
}>;
|
|
2553
|
+
type FieldButtonProperties = InferComponentDefinition<typeof templateCustomPickerField.componentPropertyDefinitions>;
|
|
2554
|
+
type InputButtonProperties = InferComponentDefinition<{
|
|
2555
|
+
"Has Prefix#32514:10": {
|
|
2556
|
+
type: "BOOLEAN";
|
|
2557
|
+
defaultValue: false;
|
|
2558
|
+
};
|
|
2559
|
+
"Has Suffix#32865:68": {
|
|
2560
|
+
type: "BOOLEAN";
|
|
2561
|
+
defaultValue: false;
|
|
2562
|
+
};
|
|
2563
|
+
State: {
|
|
2564
|
+
type: "VARIANT";
|
|
2565
|
+
defaultValue: "Enabled";
|
|
2566
|
+
variantOptions: ["Enabled", "Error", "Disabled", "Read Only", "Pressed", "Error Pressed"];
|
|
2567
|
+
};
|
|
2568
|
+
}>;
|
|
2569
|
+
type InputButtonPrefixProperties = InferComponentDefinition<{
|
|
2570
|
+
"Icon#34021:2": {
|
|
2571
|
+
type: "INSTANCE_SWAP";
|
|
2572
|
+
defaultValue: "34885:102321";
|
|
2573
|
+
preferredValues: [
|
|
2574
|
+
{
|
|
2575
|
+
type: "COMPONENT_SET";
|
|
2576
|
+
key: "e6ff71538e21f2e117c72727e5e5cc526d2328ba";
|
|
2577
|
+
},
|
|
2578
|
+
{
|
|
2579
|
+
type: "COMPONENT_SET";
|
|
2580
|
+
key: "b4cad90025daa85c417154f8f61e09fbddb34fa7";
|
|
2581
|
+
}
|
|
2582
|
+
];
|
|
2583
|
+
};
|
|
2584
|
+
Type: {
|
|
2585
|
+
type: "VARIANT";
|
|
2586
|
+
defaultValue: "Icon";
|
|
2587
|
+
variantOptions: ["Icon", "Custom (Figma Only)"];
|
|
2588
|
+
};
|
|
2589
|
+
}>;
|
|
2590
|
+
type InputButtonSuffixProperties = InferComponentDefinition<{
|
|
2591
|
+
"Suffix Text#34021:4": {
|
|
2592
|
+
type: "TEXT";
|
|
2593
|
+
defaultValue: "원";
|
|
2594
|
+
};
|
|
2595
|
+
"Icon#37963:0": {
|
|
2596
|
+
type: "INSTANCE_SWAP";
|
|
2597
|
+
defaultValue: "43573:11862";
|
|
2598
|
+
preferredValues: [
|
|
2599
|
+
{
|
|
2600
|
+
type: "COMPONENT_SET";
|
|
2601
|
+
key: "422f4be7a88e2c41c079de9202e0b8e7da429971";
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
type: "COMPONENT_SET";
|
|
2605
|
+
key: "5c704613ff444e38fe356e3991738965bd43fcec";
|
|
2606
|
+
},
|
|
2607
|
+
{
|
|
2608
|
+
type: "COMPONENT_SET";
|
|
2609
|
+
key: "29314e598cfae33d3b325feaaa39cb71449d521a";
|
|
2610
|
+
},
|
|
2611
|
+
{
|
|
2612
|
+
type: "COMPONENT_SET";
|
|
2613
|
+
key: "ffe429c229000d814017f87a62ff9746639e3bbb";
|
|
2614
|
+
}
|
|
2615
|
+
];
|
|
2616
|
+
};
|
|
2617
|
+
"Type (Figma Only)": {
|
|
2618
|
+
type: "VARIANT";
|
|
2619
|
+
defaultValue: "Icon";
|
|
2620
|
+
variantOptions: ["Icon", "Text", "Custom"];
|
|
2621
|
+
};
|
|
2622
|
+
}>;
|
|
2623
|
+
type GenericFieldButtonProps = InferComponentDefinition<{}>;
|
|
2624
|
+
type LegacyTextFieldProperties = InferComponentDefinition<{
|
|
2625
|
+
"Show Header#870:0": {
|
|
2626
|
+
type: "BOOLEAN";
|
|
2627
|
+
};
|
|
2628
|
+
"Placeholder#958:0": {
|
|
2629
|
+
type: "TEXT";
|
|
2630
|
+
};
|
|
2631
|
+
"Show Footer#958:25": {
|
|
2632
|
+
type: "BOOLEAN";
|
|
2633
|
+
};
|
|
2634
|
+
"Show Description#958:50": {
|
|
2635
|
+
type: "BOOLEAN";
|
|
2636
|
+
};
|
|
2637
|
+
"Show Character Count#958:75": {
|
|
2638
|
+
type: "BOOLEAN";
|
|
2639
|
+
};
|
|
2640
|
+
"Show Suffix#958:100": {
|
|
2641
|
+
type: "BOOLEAN";
|
|
2642
|
+
};
|
|
2643
|
+
"Show Prefix#958:125": {
|
|
2644
|
+
type: "BOOLEAN";
|
|
2645
|
+
};
|
|
2646
|
+
"Show Indicator#1259:0": {
|
|
2647
|
+
type: "BOOLEAN";
|
|
2648
|
+
};
|
|
2649
|
+
"Show Prefix Text#1267:0": {
|
|
2650
|
+
type: "BOOLEAN";
|
|
2651
|
+
};
|
|
2652
|
+
"Prefix Icon#1267:25": {
|
|
2653
|
+
type: "INSTANCE_SWAP";
|
|
2654
|
+
preferredValues: [];
|
|
2655
|
+
};
|
|
2656
|
+
"Show Prefix Icon#1267:50": {
|
|
2657
|
+
type: "BOOLEAN";
|
|
2658
|
+
};
|
|
2659
|
+
"Show Suffix Icon#1267:75": {
|
|
2660
|
+
type: "BOOLEAN";
|
|
2661
|
+
};
|
|
2662
|
+
"Suffix Icon #1267:100": {
|
|
2663
|
+
type: "INSTANCE_SWAP";
|
|
2664
|
+
preferredValues: [];
|
|
2665
|
+
};
|
|
2666
|
+
"Show Suffix Text#1267:125": {
|
|
2667
|
+
type: "BOOLEAN";
|
|
2668
|
+
};
|
|
2669
|
+
"Filled Text#1304:0": {
|
|
2670
|
+
type: "TEXT";
|
|
2671
|
+
};
|
|
2672
|
+
"Description#12626:5": {
|
|
2673
|
+
type: "TEXT";
|
|
2674
|
+
};
|
|
2675
|
+
"Label#14964:0": {
|
|
2676
|
+
type: "TEXT";
|
|
2677
|
+
};
|
|
2678
|
+
"Max Character Count#15327:27": {
|
|
2679
|
+
type: "TEXT";
|
|
2680
|
+
};
|
|
2681
|
+
"Character Count#15327:64": {
|
|
2682
|
+
type: "TEXT";
|
|
2683
|
+
};
|
|
2684
|
+
"Prefix Text#15327:101": {
|
|
2685
|
+
type: "TEXT";
|
|
2686
|
+
};
|
|
2687
|
+
"Suffix Text#15327:138": {
|
|
2688
|
+
type: "TEXT";
|
|
2689
|
+
};
|
|
2690
|
+
"Indicator#15327:249": {
|
|
2691
|
+
type: "TEXT";
|
|
2692
|
+
};
|
|
2693
|
+
Size: {
|
|
2694
|
+
type: "VARIANT";
|
|
2695
|
+
variantOptions: ["Medium", "Large(Default)"];
|
|
2696
|
+
};
|
|
2697
|
+
State: {
|
|
2698
|
+
type: "VARIANT";
|
|
2699
|
+
variantOptions: ["Enabled", "Focused", "Invalid", "Invalid-Focused", "Disabled", "Read Only"];
|
|
2700
|
+
};
|
|
2701
|
+
Filled: {
|
|
2702
|
+
type: "VARIANT";
|
|
2703
|
+
variantOptions: ["True", "False"];
|
|
2704
|
+
};
|
|
2705
|
+
}>;
|
|
2706
|
+
type LegacyMultilineTextFieldProperties = InferComponentDefinition<{
|
|
2707
|
+
"Show Header#870:0": {
|
|
2708
|
+
type: "BOOLEAN";
|
|
2709
|
+
};
|
|
2710
|
+
"Placeholder#958:0": {
|
|
2711
|
+
type: "TEXT";
|
|
2712
|
+
};
|
|
2713
|
+
"Show Footer#958:25": {
|
|
2714
|
+
type: "BOOLEAN";
|
|
2715
|
+
};
|
|
2716
|
+
"Show Description#958:50": {
|
|
2717
|
+
type: "BOOLEAN";
|
|
2718
|
+
};
|
|
2719
|
+
"Show Character count#958:75": {
|
|
2720
|
+
type: "BOOLEAN";
|
|
2721
|
+
};
|
|
2722
|
+
"Show Indicator#1259:0": {
|
|
2723
|
+
type: "BOOLEAN";
|
|
2724
|
+
};
|
|
2725
|
+
"Filled Text#1304:0": {
|
|
2726
|
+
type: "TEXT";
|
|
2727
|
+
};
|
|
2728
|
+
"Max Character Count#15327:175": {
|
|
2729
|
+
type: "TEXT";
|
|
2730
|
+
};
|
|
2731
|
+
"Description#15327:212": {
|
|
2732
|
+
type: "TEXT";
|
|
2733
|
+
};
|
|
2734
|
+
"Indicator#15327:286": {
|
|
2735
|
+
type: "TEXT";
|
|
2736
|
+
};
|
|
2737
|
+
"Label#15327:323": {
|
|
2738
|
+
type: "TEXT";
|
|
2739
|
+
};
|
|
2740
|
+
"Character Count#15327:360": {
|
|
2741
|
+
type: "TEXT";
|
|
2742
|
+
};
|
|
2743
|
+
Size: {
|
|
2744
|
+
type: "VARIANT";
|
|
2745
|
+
variantOptions: ["Medium", "Large", "XLarge"];
|
|
2746
|
+
};
|
|
2747
|
+
State: {
|
|
2748
|
+
type: "VARIANT";
|
|
2749
|
+
variantOptions: ["Enabled", "Focused", "Invalid", "Invalid-Focused", "Disabled", "Read Only"];
|
|
2750
|
+
};
|
|
2751
|
+
Filled: {
|
|
2752
|
+
type: "VARIANT";
|
|
2753
|
+
variantOptions: ["True", "False"];
|
|
2754
|
+
};
|
|
2755
|
+
}>;
|
|
2756
|
+
type LegacySelectBoxProperties = InferComponentDefinition<{
|
|
2757
|
+
"Show Description#3033:0": {
|
|
2758
|
+
type: "BOOLEAN";
|
|
2759
|
+
};
|
|
2760
|
+
"Description #3033:5": {
|
|
2761
|
+
type: "TEXT";
|
|
2762
|
+
};
|
|
2763
|
+
"Label#3635:0": {
|
|
2764
|
+
type: "TEXT";
|
|
2765
|
+
};
|
|
2766
|
+
Control: {
|
|
2767
|
+
type: "VARIANT";
|
|
2768
|
+
variantOptions: ["Checkbox", "Radio"];
|
|
2769
|
+
};
|
|
2770
|
+
Selected: {
|
|
2771
|
+
type: "VARIANT";
|
|
2772
|
+
variantOptions: ["True", "False"];
|
|
2773
|
+
};
|
|
2774
|
+
State: {
|
|
2775
|
+
type: "VARIANT";
|
|
2776
|
+
variantOptions: ["Enabled", "Pressed"];
|
|
2777
|
+
};
|
|
2778
|
+
}>;
|
|
2779
|
+
type LegacySelectBoxGroupProperties = InferComponentDefinition<{
|
|
2780
|
+
Control: {
|
|
2781
|
+
type: "VARIANT";
|
|
2782
|
+
variantOptions: ["Checkbox", "Radio"];
|
|
2783
|
+
};
|
|
2784
|
+
"Item Count": {
|
|
2785
|
+
type: "VARIANT";
|
|
2786
|
+
variantOptions: ["1", "2", "3", "4", "5", "6"];
|
|
2787
|
+
};
|
|
2788
|
+
}>;
|
|
2789
|
+
|
|
2790
|
+
interface CreatePipelineConfig {
|
|
2791
|
+
shouldInferAutoLayout?: boolean;
|
|
2792
|
+
shouldInferVariableName?: boolean;
|
|
2793
|
+
}
|
|
2794
|
+
declare function createPipeline(options?: CreatePipelineConfig): CodeGenerator;
|
|
2795
|
+
|
|
2796
|
+
type FigmaValueResolver = ValueResolver<string, {
|
|
2797
|
+
value: string;
|
|
2798
|
+
direction?: string;
|
|
2799
|
+
}, number, number, number>;
|
|
2800
|
+
|
|
2801
|
+
interface PropsConverters {
|
|
2802
|
+
containerLayout: PropsConverter<ContainerLayoutTrait, ContainerLayoutProps>;
|
|
2803
|
+
selfLayout: PropsConverter<SelfLayoutTrait, SelfLayoutProps>;
|
|
2804
|
+
radius: PropsConverter<RadiusTrait, RadiusProps>;
|
|
2805
|
+
frameFill: PropsConverter<FillTrait, FillProps>;
|
|
2806
|
+
shapeFill: PropsConverter<FillTrait, FillProps>;
|
|
2807
|
+
textFill: PropsConverter<FillTrait, FillProps>;
|
|
2808
|
+
stroke: PropsConverter<StrokeTrait, StrokeProps>;
|
|
2809
|
+
shadow: PropsConverter<ShadowTrait, ShadowProps>;
|
|
2810
|
+
typeStyle: PropsConverter<TypeStyleTrait, TypeStyleProps>;
|
|
2811
|
+
}
|
|
2812
|
+
type ContainerLayoutTrait = NormalizedHasFramePropertiesTrait & NormalizedHasChildrenTrait & NormalizedHasLayoutTrait & NormalizedIsLayerTrait;
|
|
2813
|
+
type SelfLayoutTrait = NormalizedIsLayerTrait & NormalizedHasLayoutTrait;
|
|
2814
|
+
type RadiusTrait = NormalizedCornerTrait & NormalizedIsLayerTrait;
|
|
2815
|
+
type FillTrait = NormalizedIsLayerTrait & NormalizedHasGeometryTrait;
|
|
2816
|
+
type StrokeTrait = NormalizedIsLayerTrait & NormalizedHasGeometryTrait;
|
|
2817
|
+
type ShadowTrait = NormalizedIsLayerTrait & NormalizedHasEffectsTrait;
|
|
2818
|
+
type TypeStyleTrait = NormalizedTypePropertiesTrait & NormalizedIsLayerTrait;
|
|
2819
|
+
interface ContainerLayoutProps {
|
|
2820
|
+
layoutMode?: "HORIZONTAL" | "VERTICAL" | "NONE";
|
|
2821
|
+
primaryAxisAlignItems?: "MIN" | "CENTER" | "MAX" | "SPACE_BETWEEN";
|
|
2822
|
+
counterAxisAlignItems?: "MIN" | "CENTER" | "MAX" | "BASELINE";
|
|
2823
|
+
layoutWrap?: "WRAP" | "NO_WRAP";
|
|
2824
|
+
itemSpacing?: number | string;
|
|
2825
|
+
counterAxisSpacing?: number | string;
|
|
2826
|
+
paddingTop?: number | string;
|
|
2827
|
+
paddingBottom?: number | string;
|
|
2828
|
+
paddingLeft?: number | string;
|
|
2829
|
+
paddingRight?: number | string;
|
|
2830
|
+
horizontalPadding?: number | string;
|
|
2831
|
+
verticalPadding?: number | string;
|
|
2832
|
+
}
|
|
2833
|
+
declare function createContainerLayoutPropsConverter(valueResolver: FigmaValueResolver): PropsConverter<ContainerLayoutTrait, ContainerLayoutProps>;
|
|
2834
|
+
interface SelfLayoutProps {
|
|
2835
|
+
layoutGrow?: number;
|
|
2836
|
+
layoutAlign?: "STRETCH" | "INHERIT" | "MIN" | "CENTER" | "MAX";
|
|
2837
|
+
layoutSizingVertical?: "FIXED" | "HUG" | "FILL";
|
|
2838
|
+
layoutSizingHorizontal?: "FIXED" | "HUG" | "FILL";
|
|
2839
|
+
width?: string | number;
|
|
2840
|
+
height?: string | number;
|
|
2841
|
+
minWidth?: string | number;
|
|
2842
|
+
minHeight?: string | number;
|
|
2843
|
+
maxWidth?: string | number;
|
|
2844
|
+
maxHeight?: string | number;
|
|
2845
|
+
}
|
|
2846
|
+
declare function createSelfLayoutPropsConverter(valueResolver: FigmaValueResolver): PropsConverter<SelfLayoutTrait, SelfLayoutProps>;
|
|
2847
|
+
interface RadiusProps {
|
|
2848
|
+
cornerRadius?: number | string;
|
|
2849
|
+
topLeftRadius?: number | string;
|
|
2850
|
+
topRightRadius?: number | string;
|
|
2851
|
+
bottomLeftRadius?: number | string;
|
|
2852
|
+
bottomRightRadius?: number | string;
|
|
2853
|
+
}
|
|
2854
|
+
declare function createRadiusPropsConverter(valueResolver: FigmaValueResolver): PropsConverter<RadiusTrait, RadiusProps>;
|
|
2855
|
+
interface FillProps {
|
|
2856
|
+
fill?: string | {
|
|
2857
|
+
value: string;
|
|
2858
|
+
direction?: string;
|
|
2859
|
+
};
|
|
2860
|
+
}
|
|
2861
|
+
declare function createFrameFillPropsConverter(valueResolver: FigmaValueResolver): PropsConverter<FillTrait, FillProps>;
|
|
2862
|
+
declare function createShapeFillPropsConverter(valueResolver: FigmaValueResolver): PropsConverter<FillTrait, FillProps>;
|
|
2863
|
+
declare function createTextFillPropsConverter(valueResolver: FigmaValueResolver): PropsConverter<FillTrait, FillProps>;
|
|
2864
|
+
interface StrokeProps {
|
|
2865
|
+
stroke?: string;
|
|
2866
|
+
strokeWeight?: number;
|
|
2867
|
+
}
|
|
2868
|
+
declare function createStrokePropsConverter(valueResolver: FigmaValueResolver): PropsConverter<StrokeTrait, StrokeProps>;
|
|
2869
|
+
interface TypeStyleProps {
|
|
2870
|
+
textStyle?: string;
|
|
2871
|
+
fontSize?: string | number;
|
|
2872
|
+
fontWeight?: string | number;
|
|
2873
|
+
lineHeight?: string | number;
|
|
2874
|
+
maxLines?: number;
|
|
2875
|
+
}
|
|
2876
|
+
declare function createTypeStylePropsConverter(valueResolver: FigmaValueResolver): PropsConverter<TypeStyleTrait, TypeStyleProps>;
|
|
2877
|
+
interface ShadowProps {
|
|
2878
|
+
boxShadowStyle?: string;
|
|
2879
|
+
boxShadow?: string;
|
|
2880
|
+
}
|
|
2881
|
+
declare function createShadowPropsConverter(valueResolver: FigmaValueResolver): PropsConverter<ShadowTrait, ShadowProps>;
|
|
2882
|
+
|
|
2883
|
+
interface FrameTransformerDeps {
|
|
2884
|
+
propsConverters: PropsConverters;
|
|
2885
|
+
}
|
|
2886
|
+
declare function createFrameTransformer({ propsConverters, }: FrameTransformerDeps): ElementTransformer<NormalizedFrameNode | NormalizedInstanceNode | NormalizedComponentNode>;
|
|
2887
|
+
|
|
2888
|
+
interface InstanceTransformerDeps {
|
|
2889
|
+
frameTransformer: ElementTransformer<NormalizedInstanceNode>;
|
|
2890
|
+
componentRepository?: ComponentRepository;
|
|
2891
|
+
}
|
|
2892
|
+
declare function createInstanceTransformer({ frameTransformer, componentRepository, }: InstanceTransformerDeps): ElementTransformer<NormalizedInstanceNode>;
|
|
2893
|
+
|
|
2894
|
+
interface RectangleTransformerDeps {
|
|
2895
|
+
propsConverters: PropsConverters;
|
|
2896
|
+
}
|
|
2897
|
+
declare function createRectangleTransformer({ propsConverters, }: RectangleTransformerDeps): ElementTransformer<NormalizedRectangleNode>;
|
|
2898
|
+
interface VectorTransformerDeps {
|
|
2899
|
+
propsConverters: PropsConverters;
|
|
2900
|
+
}
|
|
2901
|
+
declare function createVectorTransformer({ propsConverters, }: VectorTransformerDeps): ElementTransformer<NormalizedVectorNode>;
|
|
2902
|
+
interface BooleanOperationTransformerDeps {
|
|
2903
|
+
propsConverters: PropsConverters;
|
|
2904
|
+
}
|
|
2905
|
+
declare function createBooleanOperationTransformer({ propsConverters, }: BooleanOperationTransformerDeps): ElementTransformer<NormalizedBooleanOperationNode>;
|
|
2906
|
+
|
|
2907
|
+
interface TextTransformerDeps {
|
|
2908
|
+
propsConverters: PropsConverters;
|
|
2909
|
+
}
|
|
2910
|
+
declare function createTextTransformer({ propsConverters, }: TextTransformerDeps): ElementTransformer<NormalizedTextNode>;
|
|
2911
|
+
|
|
2912
|
+
type index_BooleanOperationTransformerDeps = BooleanOperationTransformerDeps;
|
|
2913
|
+
type index_ContainerLayoutProps = ContainerLayoutProps;
|
|
2914
|
+
type index_ContainerLayoutTrait = ContainerLayoutTrait;
|
|
2915
|
+
type index_CreatePipelineConfig = CreatePipelineConfig;
|
|
2916
|
+
type index_FillProps = FillProps;
|
|
2917
|
+
type index_FillTrait = FillTrait;
|
|
2918
|
+
type index_FrameTransformerDeps = FrameTransformerDeps;
|
|
2919
|
+
type index_InstanceTransformerDeps = InstanceTransformerDeps;
|
|
2920
|
+
type index_PropsConverters = PropsConverters;
|
|
2921
|
+
type index_RadiusProps = RadiusProps;
|
|
2922
|
+
type index_RadiusTrait = RadiusTrait;
|
|
2923
|
+
type index_RectangleTransformerDeps = RectangleTransformerDeps;
|
|
2924
|
+
type index_SelfLayoutProps = SelfLayoutProps;
|
|
2925
|
+
type index_SelfLayoutTrait = SelfLayoutTrait;
|
|
2926
|
+
type index_ShadowProps = ShadowProps;
|
|
2927
|
+
type index_ShadowTrait = ShadowTrait;
|
|
2928
|
+
type index_StrokeProps = StrokeProps;
|
|
2929
|
+
type index_StrokeTrait = StrokeTrait;
|
|
2930
|
+
type index_TextTransformerDeps = TextTransformerDeps;
|
|
2931
|
+
type index_TypeStyleProps = TypeStyleProps;
|
|
2932
|
+
type index_TypeStyleTrait = TypeStyleTrait;
|
|
2933
|
+
type index_VectorTransformerDeps = VectorTransformerDeps;
|
|
2934
|
+
declare const index_createBooleanOperationTransformer: typeof createBooleanOperationTransformer;
|
|
2935
|
+
declare const index_createContainerLayoutPropsConverter: typeof createContainerLayoutPropsConverter;
|
|
2936
|
+
declare const index_createFrameFillPropsConverter: typeof createFrameFillPropsConverter;
|
|
2937
|
+
declare const index_createFrameTransformer: typeof createFrameTransformer;
|
|
2938
|
+
declare const index_createInstanceTransformer: typeof createInstanceTransformer;
|
|
2939
|
+
declare const index_createPipeline: typeof createPipeline;
|
|
2940
|
+
declare const index_createRadiusPropsConverter: typeof createRadiusPropsConverter;
|
|
2941
|
+
declare const index_createRectangleTransformer: typeof createRectangleTransformer;
|
|
2942
|
+
declare const index_createSelfLayoutPropsConverter: typeof createSelfLayoutPropsConverter;
|
|
2943
|
+
declare const index_createShadowPropsConverter: typeof createShadowPropsConverter;
|
|
2944
|
+
declare const index_createShapeFillPropsConverter: typeof createShapeFillPropsConverter;
|
|
2945
|
+
declare const index_createStrokePropsConverter: typeof createStrokePropsConverter;
|
|
2946
|
+
declare const index_createTextFillPropsConverter: typeof createTextFillPropsConverter;
|
|
2947
|
+
declare const index_createTextTransformer: typeof createTextTransformer;
|
|
2948
|
+
declare const index_createTypeStylePropsConverter: typeof createTypeStylePropsConverter;
|
|
2949
|
+
declare const index_createVectorTransformer: typeof createVectorTransformer;
|
|
2950
|
+
declare namespace index {
|
|
2951
|
+
export { index_createBooleanOperationTransformer as createBooleanOperationTransformer, index_createContainerLayoutPropsConverter as createContainerLayoutPropsConverter, index_createFrameFillPropsConverter as createFrameFillPropsConverter, index_createFrameTransformer as createFrameTransformer, index_createInstanceTransformer as createInstanceTransformer, index_createPipeline as createPipeline, index_createRadiusPropsConverter as createRadiusPropsConverter, index_createRectangleTransformer as createRectangleTransformer, index_createSelfLayoutPropsConverter as createSelfLayoutPropsConverter, index_createShadowPropsConverter as createShadowPropsConverter, index_createShapeFillPropsConverter as createShapeFillPropsConverter, index_createStrokePropsConverter as createStrokePropsConverter, index_createTextFillPropsConverter as createTextFillPropsConverter, index_createTextTransformer as createTextTransformer, index_createTypeStylePropsConverter as createTypeStylePropsConverter, index_createVectorTransformer as createVectorTransformer };
|
|
2952
|
+
export type { index_BooleanOperationTransformerDeps as BooleanOperationTransformerDeps, index_ContainerLayoutProps as ContainerLayoutProps, index_ContainerLayoutTrait as ContainerLayoutTrait, index_CreatePipelineConfig as CreatePipelineConfig, index_FillProps as FillProps, index_FillTrait as FillTrait, index_FrameTransformerDeps as FrameTransformerDeps, index_InstanceTransformerDeps as InstanceTransformerDeps, index_PropsConverters as PropsConverters, index_RadiusProps as RadiusProps, index_RadiusTrait as RadiusTrait, index_RectangleTransformerDeps as RectangleTransformerDeps, index_SelfLayoutProps as SelfLayoutProps, index_SelfLayoutTrait as SelfLayoutTrait, index_ShadowProps as ShadowProps, index_ShadowTrait as ShadowTrait, index_StrokeProps as StrokeProps, index_StrokeTrait as StrokeTrait, index_TextTransformerDeps as TextTransformerDeps, index_TypeStyleProps as TypeStyleProps, index_TypeStyleTrait as TypeStyleTrait, index_VectorTransformerDeps as VectorTransformerDeps };
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2955
|
+
export { cloneElement, createCodeGenerator, createElement, createPropsConverter, createValueResolver, defineComponentHandler, defineElementTransformer, definePropsConverter, index as figma, inferLayout };
|
|
2956
|
+
export type { ActionButtonGhostProperties, ActionButtonProperties, AlertDialogFooterProperties, AlertDialogProperties, AppBarLeftIconButtonProperties, AppBarMainProperties, AppBarProperties, AppBarRightIconButtonProperties, AvatarProperties, AvatarStackProperties, BadgeProperties, BottomSheetProperties, CalloutProperties, CheckboxProperties, CheckmarkProperties, ChipIconSuffixProperties, ChipProperties, ChipTabsTriggerProperties, CodeGeneratorDeps, ComponentHandler, ComponentPropertyDefinition, ContextualFloatingButtonProperties, DividerProperties, ElementNode, ElementTransformer, FieldButtonProperties, FieldCharacterCountProperties, FieldFooterProperties, FieldHeaderProperties, FieldIndicatorProperties, FloatingActionButtonButtonItemProperties, FloatingActionButtonMenuItemProperties, FloatingActionButtonProperties, GenericFieldButtonProps, HelpBubbleProperties, IdentityPlaceholderProperties, InferComponentDefinition, InferComponentPropertyType, InputButtonPrefixProperties, InputButtonProperties, InputButtonSuffixProperties, LegacyMultilineTextFieldProperties, LegacySelectBoxGroupProperties, LegacySelectBoxProperties, LegacyTextFieldProperties, ListHeaderProperties, ListItemPrefixIconProperties, ListItemProperties, ListItemSuffixIconProperties, MannerTempBadgeProperties, MannerTempProperties, MenuSheetGroupProperties, MenuSheetItemProperties, MenuSheetProperties, PageBannerButtonProperties, PageBannerProperties, ProgressCircleProperties, PropsConverter, RadioProperties, RadiomarkProperties, ReactionButtonProperties, ResultSectionProperties, SegmentedControlItemProperties, SegmentedControlProperties, SkeletonProperties, SliderFieldProperties, SliderProperties, SliderTicksProperties, SnackbarProperties, SwitchProperties, SwitchmarkProperties, TabsChipWrapperProperties, TabsLineTriggerFillProperties, TabsLineTriggerHugProperties, TabsLineWrapperProperties, TabsProperties, TagGroupItemProperties, TagGroupProperties, TextInputFieldProperties, TextInputOutlinePrefixProperties, TextInputOutlineProperties, TextInputOutlineSuffixProperties, TextInputUnderlinePrefixProperties, TextInputUnderlineProperties, TextInputUnderlineSuffixProperties, TextareaFieldProperties, TextareaProperties, ToggleButtonProperties, ValueResolver };
|
|
2957
|
+
//# sourceMappingURL=index.d.ts.map
|