@seed-design/figma 0.0.21 → 0.0.23
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 +8012 -0
- package/lib/codegen/index.d.ts +1828 -0
- package/lib/codegen/index.js +7983 -0
- package/lib/codegen/targets/react/index.cjs +12198 -0
- package/lib/codegen/targets/react/index.d.ts +267 -0
- package/lib/codegen/targets/react/index.js +12180 -0
- package/lib/index.cjs +79 -2741
- package/lib/index.d.ts +17 -1937
- package/lib/index.js +61 -2715
- package/package.json +12 -2
- package/src/codegen/{targets/react/component/properties.type.ts → component-properties.ts} +43 -43
- package/src/codegen/core/codegen.ts +17 -6
- package/src/codegen/core/{component.ts → component-handler.ts} +3 -3
- package/src/codegen/core/component-type-helper.ts +35 -0
- package/src/codegen/core/index.ts +14 -14
- package/src/codegen/core/{props.ts → props-converter.ts} +10 -13
- package/src/codegen/core/{value.ts → value-resolver.ts} +87 -50
- package/src/codegen/default-services.ts +44 -0
- package/src/codegen/index.ts +1 -44
- package/src/codegen/targets/figma/frame.ts +8 -8
- package/src/codegen/targets/figma/index.ts +1 -1
- package/src/codegen/targets/figma/pipeline.ts +94 -0
- package/src/codegen/targets/figma/props.ts +59 -70
- package/src/codegen/targets/figma/shape.ts +18 -18
- package/src/codegen/targets/figma/text.ts +6 -6
- package/src/codegen/targets/figma/value-resolver.ts +19 -0
- package/src/codegen/targets/react/component/deps.interface.ts +5 -4
- package/src/codegen/targets/react/component/{transformers → handlers}/action-button.ts +8 -14
- package/src/codegen/targets/react/component/{transformers → handlers}/action-chip.ts +10 -20
- package/src/codegen/targets/react/component/{transformers → handlers}/action-sheet.ts +13 -10
- package/src/codegen/targets/react/component/{transformers → handlers}/app-bar.ts +28 -36
- package/src/codegen/targets/react/component/handlers/avatar-stack.ts +29 -0
- package/src/codegen/targets/react/component/{transformers → handlers}/avatar.ts +12 -9
- package/src/codegen/targets/react/component/handlers/badge.ts +18 -0
- package/src/codegen/targets/react/component/{transformers → handlers}/callout.ts +6 -8
- package/src/codegen/targets/react/component/{transformers → handlers}/checkbox.ts +5 -5
- package/src/codegen/targets/react/component/{transformers → handlers}/chip-tabs.ts +10 -10
- package/src/codegen/targets/react/component/{transformers → handlers}/control-chip.ts +10 -20
- package/src/codegen/targets/react/component/{transformers → handlers}/error-state.ts +9 -9
- package/src/codegen/targets/react/component/{transformers → handlers}/extended-action-sheet.ts +16 -18
- package/src/codegen/targets/react/component/{transformers → handlers}/extended-fab.ts +6 -6
- package/src/codegen/targets/react/component/handlers/fab.ts +18 -0
- package/src/codegen/targets/react/component/{transformers → handlers}/help-bubble.ts +5 -5
- package/src/codegen/targets/react/component/{transformers → handlers}/identity-placeholder.ts +5 -5
- package/src/codegen/targets/react/component/{transformers → handlers}/inline-banner.ts +7 -10
- package/src/codegen/targets/react/component/{transformers → handlers}/manner-temp-badge.ts +5 -5
- package/src/codegen/targets/react/component/{transformers → handlers}/multiline-text-field.ts +5 -5
- package/src/codegen/targets/react/component/{transformers → handlers}/progress-circle.ts +5 -5
- package/src/codegen/targets/react/component/{transformers → handlers}/reaction-button.ts +6 -6
- package/src/codegen/targets/react/component/{transformers → handlers}/segmented-control.ts +10 -10
- package/src/codegen/targets/react/component/{transformers → handlers}/select-box.ts +10 -10
- package/src/codegen/targets/react/component/handlers/skeleton.ts +25 -0
- package/src/codegen/targets/react/component/{transformers → handlers}/snackbar.ts +5 -5
- package/src/codegen/targets/react/component/{transformers → handlers}/switch.ts +5 -5
- package/src/codegen/targets/react/component/{transformers → handlers}/tabs.ts +15 -15
- package/src/codegen/targets/react/component/{transformers → handlers}/text-button.ts +7 -13
- package/src/codegen/targets/react/component/{transformers → handlers}/text-field.ts +9 -9
- package/src/codegen/targets/react/component/{transformers → handlers}/toggle-button.ts +7 -11
- package/src/codegen/targets/react/component/index.ts +79 -75
- package/src/codegen/targets/react/frame.ts +8 -8
- package/src/codegen/targets/react/icon.ts +50 -0
- package/src/codegen/targets/react/index.ts +1 -1
- package/src/codegen/targets/react/instance.ts +19 -50
- package/src/codegen/targets/react/pipeline.ts +124 -0
- package/src/codegen/targets/react/props.ts +95 -73
- package/src/codegen/targets/react/shape.ts +5 -5
- package/src/codegen/targets/react/text.ts +6 -6
- package/src/codegen/targets/react/value-resolver.ts +32 -0
- package/src/entities/icon.repository.ts +2 -2
- package/src/entities/icon.service.ts +9 -20
- package/src/entities/style.service.ts +5 -17
- package/src/entities/variable.service.ts +36 -68
- package/src/utils/figma-variable.ts +39 -3
- package/src/codegen/core/component.types.ts +0 -29
- package/src/codegen/targets/figma/context.ts +0 -139
- package/src/codegen/targets/react/component/transformers/avatar-stack.ts +0 -29
- package/src/codegen/targets/react/component/transformers/badge.ts +0 -21
- package/src/codegen/targets/react/component/transformers/fab.ts +0 -18
- package/src/codegen/targets/react/component/transformers/skeleton.ts +0 -51
- package/src/codegen/targets/react/context.ts +0 -176
- /package/src/codegen/core/{element.ts → element-transformer.ts} +0 -0
package/lib/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as FigmaRestSpec from '@figma/rest-api-spec';
|
|
2
|
-
import { LocalVariable,
|
|
2
|
+
import { LocalVariable, LocalVariableCollection, VariableResolvedDataType, VariableAlias, Style as Style$1, StyleType as StyleType$1, VariableScope } from '@figma/rest-api-spec';
|
|
3
3
|
export { VariableScope } from '@figma/rest-api-spec';
|
|
4
|
+
export * from './codegen/index.js';
|
|
4
5
|
|
|
5
6
|
type NormalizedIsLayerTrait = Pick<FigmaRestSpec.IsLayerTrait, "type" | "id" | "name" | "boundVariables">;
|
|
6
7
|
type NormalizedCornerTrait = Pick<FigmaRestSpec.CornerTrait, "cornerRadius" | "rectangleCornerRadii">;
|
|
@@ -79,68 +80,6 @@ declare function createRestNormalizer(ctx: RestNormalizerContext): (node: FigmaR
|
|
|
79
80
|
|
|
80
81
|
declare function createPluginNormalizer(): (node: SceneNode) => Promise<NormalizedSceneNode>;
|
|
81
82
|
|
|
82
|
-
interface ElementNode {
|
|
83
|
-
__IS_JSX_ELEMENT_NODE: true;
|
|
84
|
-
tag: string;
|
|
85
|
-
props: Record<string, string | number | boolean | ElementNode | object | undefined>;
|
|
86
|
-
children: (ElementNode | string)[];
|
|
87
|
-
comment?: string;
|
|
88
|
-
source?: string;
|
|
89
|
-
}
|
|
90
|
-
declare function createElement(tag: string, props?: Record<string, string | number | boolean | object | undefined>, children?: ElementNode | string | undefined | (ElementNode | string | undefined)[], comment?: string): ElementNode;
|
|
91
|
-
declare function cloneElement(element: ElementNode, props?: Record<string, string | number | boolean | object | undefined>, children?: ElementNode | string | undefined | (ElementNode | string | undefined)[]): {
|
|
92
|
-
props: {
|
|
93
|
-
[x: string]: string | number | boolean | object | ElementNode | undefined;
|
|
94
|
-
};
|
|
95
|
-
children: (string | ElementNode)[];
|
|
96
|
-
__IS_JSX_ELEMENT_NODE: true;
|
|
97
|
-
tag: string;
|
|
98
|
-
comment?: string;
|
|
99
|
-
source?: string;
|
|
100
|
-
};
|
|
101
|
-
|
|
102
|
-
type ElementTransformer<T extends NormalizedSceneNode> = (node: T, traverse: (node: NormalizedSceneNode) => ElementNode | undefined) => ElementNode | undefined;
|
|
103
|
-
declare function defineElementTransformer<T extends NormalizedSceneNode>(transformer: ElementTransformer<T>): ElementTransformer<T>;
|
|
104
|
-
|
|
105
|
-
interface CodegenTransformerDeps {
|
|
106
|
-
frameTransformer: ElementTransformer<NormalizedFrameNode | NormalizedComponentNode | NormalizedInstanceNode>;
|
|
107
|
-
textTransformer: ElementTransformer<NormalizedTextNode>;
|
|
108
|
-
rectangleTransformer: ElementTransformer<NormalizedRectangleNode>;
|
|
109
|
-
instanceTransformer: ElementTransformer<NormalizedInstanceNode>;
|
|
110
|
-
vectorTransformer: ElementTransformer<NormalizedVectorNode>;
|
|
111
|
-
booleanOperationTransformer: ElementTransformer<NormalizedBooleanOperationNode>;
|
|
112
|
-
shouldInferAutoLayout: boolean;
|
|
113
|
-
}
|
|
114
|
-
declare function createCodegenTransformer({ frameTransformer, textTransformer, rectangleTransformer, instanceTransformer, vectorTransformer, booleanOperationTransformer, shouldInferAutoLayout, }: CodegenTransformerDeps): (node: NormalizedSceneNode) => ElementNode | undefined;
|
|
115
|
-
|
|
116
|
-
interface ComponentTransformer<T extends NormalizedInstanceNode["componentProperties"] = NormalizedInstanceNode["componentProperties"]> {
|
|
117
|
-
key: string;
|
|
118
|
-
transform: (node: NormalizedInstanceNode & {
|
|
119
|
-
componentProperties: T;
|
|
120
|
-
}) => ElementNode;
|
|
121
|
-
}
|
|
122
|
-
declare function defineComponentTransformer<T extends NormalizedInstanceNode["componentProperties"]>(key: string, transform: (node: NormalizedInstanceNode & {
|
|
123
|
-
componentProperties: T;
|
|
124
|
-
}) => ElementNode): ComponentTransformer<T>;
|
|
125
|
-
|
|
126
|
-
interface ComponentPropertyDefinition {
|
|
127
|
-
type: ComponentPropertyType;
|
|
128
|
-
preferredValues?: InstanceSwapPreferredValue[];
|
|
129
|
-
variantOptions?: string[];
|
|
130
|
-
}
|
|
131
|
-
type InferPropertyType<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;
|
|
132
|
-
type InferFromDefinition<T extends Record<string, ComponentPropertyDefinition>> = {
|
|
133
|
-
[K in keyof T]: {
|
|
134
|
-
type: T[K]["type"];
|
|
135
|
-
value: InferPropertyType<T[K]>;
|
|
136
|
-
componentKey?: string;
|
|
137
|
-
preferredValues?: InstanceSwapPreferredValue[];
|
|
138
|
-
readonly boundVariables?: {
|
|
139
|
-
[field in VariableBindableComponentPropertyField]?: VariableAlias;
|
|
140
|
-
};
|
|
141
|
-
};
|
|
142
|
-
};
|
|
143
|
-
|
|
144
83
|
interface IconData {
|
|
145
84
|
name: string;
|
|
146
85
|
type: "monochrome" | "multicolor";
|
|
@@ -151,7 +90,7 @@ type Variable = LocalVariable;
|
|
|
151
90
|
type VariableCollection = LocalVariableCollection;
|
|
152
91
|
type VariableType = VariableResolvedDataType;
|
|
153
92
|
type VariableValue = Variable["valuesByMode"][string];
|
|
154
|
-
type VariableValueResolved = Exclude<VariableValue, VariableAlias
|
|
93
|
+
type VariableValueResolved = Exclude<VariableValue, VariableAlias>;
|
|
155
94
|
|
|
156
95
|
interface VariableRepository {
|
|
157
96
|
getVariableList(): Variable[];
|
|
@@ -180,1905 +119,46 @@ interface StyleRepository {
|
|
|
180
119
|
declare function createStaticStyleRepository(styles: Style[]): StyleRepository;
|
|
181
120
|
|
|
182
121
|
interface IconRepository {
|
|
183
|
-
|
|
122
|
+
getOne(key: string): IconData;
|
|
184
123
|
}
|
|
185
124
|
declare function createStaticIconRepository(iconRecord: Record<string, IconData>): {
|
|
186
|
-
|
|
125
|
+
getOne: (key: string) => IconData;
|
|
187
126
|
};
|
|
188
127
|
|
|
189
128
|
interface IconService {
|
|
190
|
-
|
|
191
|
-
|
|
129
|
+
isAvailable: (componentKey: string) => boolean;
|
|
130
|
+
getOne: (componentKey: string) => IconData;
|
|
192
131
|
}
|
|
193
132
|
declare function createIconService({ iconRepository, }: {
|
|
194
133
|
iconRepository: IconRepository;
|
|
195
134
|
}): IconService;
|
|
196
135
|
|
|
197
136
|
interface StyleService {
|
|
198
|
-
|
|
137
|
+
getSlug: (id: string) => string[] | undefined;
|
|
199
138
|
}
|
|
200
|
-
declare function createStyleService({ styleRepository,
|
|
139
|
+
declare function createStyleService({ styleRepository, }: {
|
|
201
140
|
styleRepository: StyleRepository;
|
|
202
|
-
styleNameTransformer: ({ slug }: {
|
|
203
|
-
slug: string[];
|
|
204
|
-
}) => string;
|
|
205
141
|
}): StyleService;
|
|
206
142
|
|
|
207
143
|
interface VariableService {
|
|
208
|
-
|
|
209
|
-
|
|
144
|
+
getSlug: (id: string) => string[] | undefined;
|
|
145
|
+
resolveValue: (variable: Variable, mode: string) => VariableValueResolved;
|
|
146
|
+
infer: (value: VariableValueResolved, scope: VariableScope) => Variable | undefined;
|
|
210
147
|
}
|
|
211
148
|
interface VariableServiceDeps {
|
|
212
149
|
variableRepository: VariableRepository;
|
|
213
|
-
|
|
214
|
-
slug: string[];
|
|
215
|
-
}) => string;
|
|
216
|
-
inferCompareFunction: (name1: string, name2: string) => number;
|
|
150
|
+
inferCompareFunction: (a: Variable, b: Variable) => number;
|
|
217
151
|
}
|
|
218
|
-
declare function createVariableService({ variableRepository,
|
|
152
|
+
declare function createVariableService({ variableRepository, inferCompareFunction, }: VariableServiceDeps): VariableService;
|
|
219
153
|
|
|
220
154
|
declare const styleRepository: StyleRepository;
|
|
221
155
|
declare const variableRepository: VariableRepository;
|
|
222
156
|
declare const iconRepository: {
|
|
223
|
-
|
|
157
|
+
getOne: (key: string) => IconData;
|
|
224
158
|
};
|
|
225
159
|
declare function getFigmaVariableKey(name: string): string | undefined;
|
|
226
160
|
declare function getFigmaStyleKey(name: string): string | undefined;
|
|
227
161
|
declare function getFigmaColorVariableNames(scopes: Array<"fg" | "bg" | "stroke" | "palette">): string[];
|
|
228
162
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
type Handlers<TTrait extends Record<string, VariableValueResolved>, TProps extends Record<string, any>, HandlerKeys extends keyof TProps = keyof TProps> = {
|
|
232
|
-
[K in HandlerKeys]: (node: TTrait) => TProps[K];
|
|
233
|
-
};
|
|
234
|
-
type Shorthands<TProps extends Record<string, any>, HandlerKeys extends keyof TProps> = Record<Exclude<keyof TProps, HandlerKeys>, HandlerKeys[]>;
|
|
235
|
-
interface PropsTransformerConfig<TTrait extends Record<string, any>, TProps extends Record<string, any>, HandlerKeys extends keyof TProps> {
|
|
236
|
-
_types: {
|
|
237
|
-
trait: TTrait;
|
|
238
|
-
props: TProps;
|
|
239
|
-
};
|
|
240
|
-
handlers: Handlers<TTrait, TProps, HandlerKeys>;
|
|
241
|
-
shorthands?: Shorthands<TProps, HandlerKeys>;
|
|
242
|
-
defaults?: Partial<TProps>;
|
|
243
|
-
}
|
|
244
|
-
declare function createPropsTransformer<TTrait extends Record<string, any>, TProps extends Record<string, any>, HandlerKeys extends keyof TProps>({ handlers, shorthands, defaults, }: PropsTransformerConfig<TTrait, TProps, HandlerKeys>): PropsTransformer<TTrait, TProps>;
|
|
245
|
-
|
|
246
|
-
interface ValueTransformer<TColor, TDimension, TFontDimension, TFontWeight> {
|
|
247
|
-
getFormattedValue: {
|
|
248
|
-
frameFill: (node: NormalizedHasGeometryTrait & NormalizedIsLayerTrait) => string | TColor | undefined;
|
|
249
|
-
shapeFill: (node: NormalizedHasGeometryTrait & NormalizedIsLayerTrait) => string | TColor | undefined;
|
|
250
|
-
textFill: (node: NormalizedHasGeometryTrait & NormalizedIsLayerTrait) => string | TColor | undefined;
|
|
251
|
-
stroke: (node: NormalizedHasGeometryTrait & NormalizedIsLayerTrait) => string | TColor | undefined;
|
|
252
|
-
width: (node: NormalizedHasLayoutTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
253
|
-
height: (node: NormalizedHasLayoutTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
254
|
-
minWidth: (node: NormalizedHasLayoutTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
255
|
-
minHeight: (node: NormalizedHasLayoutTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
256
|
-
maxWidth: (node: NormalizedHasLayoutTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
257
|
-
maxHeight: (node: NormalizedHasLayoutTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
258
|
-
paddingLeft: (node: NormalizedHasFramePropertiesTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
259
|
-
paddingRight: (node: NormalizedHasFramePropertiesTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
260
|
-
paddingTop: (node: NormalizedHasFramePropertiesTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
261
|
-
paddingBottom: (node: NormalizedHasFramePropertiesTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
262
|
-
itemSpacing: (node: NormalizedHasFramePropertiesTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
263
|
-
topLeftRadius: (node: NormalizedCornerTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
264
|
-
topRightRadius: (node: NormalizedCornerTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
265
|
-
bottomLeftRadius: (node: NormalizedCornerTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
266
|
-
bottomRightRadius: (node: NormalizedCornerTrait & NormalizedIsLayerTrait) => string | TDimension | undefined;
|
|
267
|
-
fontSize: (node: NormalizedTypePropertiesTrait & NormalizedIsLayerTrait) => string | TFontDimension | undefined;
|
|
268
|
-
fontWeight: (node: NormalizedTypePropertiesTrait & NormalizedIsLayerTrait) => string | TFontWeight | undefined;
|
|
269
|
-
lineHeight: (node: NormalizedTypePropertiesTrait & NormalizedIsLayerTrait) => string | TFontDimension | undefined;
|
|
270
|
-
};
|
|
271
|
-
}
|
|
272
|
-
interface ValueTransformerDeps<TColor, TDimension, TFontDimension, TFontWeight> {
|
|
273
|
-
variableService: VariableService;
|
|
274
|
-
formatters: {
|
|
275
|
-
color: (value: RGBA) => string | TColor;
|
|
276
|
-
dimension: (value: number) => string | TDimension;
|
|
277
|
-
fontDimension: (value: number) => string | TFontDimension;
|
|
278
|
-
fontWeight: (value: number) => string | TFontWeight;
|
|
279
|
-
};
|
|
280
|
-
shouldInferVariableName: boolean;
|
|
281
|
-
}
|
|
282
|
-
declare function createValueTransformer<TColor, TDimension, TFontDimension, TFontWeight>({ variableService, formatters, shouldInferVariableName, }: ValueTransformerDeps<TColor, TDimension, TFontDimension, TFontWeight>): ValueTransformer<TColor, TDimension, TFontDimension, TFontWeight>;
|
|
283
|
-
|
|
284
|
-
interface LayoutProperties {
|
|
285
|
-
layoutMode?: "NONE" | "HORIZONTAL" | "VERTICAL";
|
|
286
|
-
primaryAxisSizingMode?: "FIXED" | "AUTO";
|
|
287
|
-
counterAxisSizingMode?: "FIXED" | "AUTO";
|
|
288
|
-
primaryAxisAlignItems?: "MIN" | "CENTER" | "MAX" | "SPACE_BETWEEN";
|
|
289
|
-
counterAxisAlignItems?: "MIN" | "CENTER" | "MAX";
|
|
290
|
-
paddingLeft?: number;
|
|
291
|
-
paddingRight?: number;
|
|
292
|
-
paddingTop?: number;
|
|
293
|
-
paddingBottom?: number;
|
|
294
|
-
itemSpacing?: number;
|
|
295
|
-
}
|
|
296
|
-
interface InferResult {
|
|
297
|
-
properties: LayoutProperties;
|
|
298
|
-
childProperties: {
|
|
299
|
-
[childId: string]: {
|
|
300
|
-
layoutAlign?: "MIN" | "STRETCH";
|
|
301
|
-
};
|
|
302
|
-
};
|
|
303
|
-
}
|
|
304
|
-
type LayoutNode = NormalizedIsLayerTrait & NormalizedHasFramePropertiesTrait & NormalizedHasChildrenTrait & NormalizedHasLayoutTrait;
|
|
305
|
-
declare function inferLayout(parentNode: LayoutNode): InferResult;
|
|
306
|
-
|
|
307
|
-
interface CreateContextOptions$1 {
|
|
308
|
-
ignoredComponentKeys?: Set<string>;
|
|
309
|
-
shouldInferVariableName: boolean;
|
|
310
|
-
shouldInferAutoLayout: boolean;
|
|
311
|
-
}
|
|
312
|
-
declare function createContext$1(options: CreateContextOptions$1): (node: NormalizedSceneNode) => ElementNode | undefined;
|
|
313
|
-
|
|
314
|
-
interface PropsTransformers$1 {
|
|
315
|
-
containerLayout: PropsTransformer<ContainerLayoutTrait$1, ContainerLayoutProps$1>;
|
|
316
|
-
selfLayout: PropsTransformer<SelfLayoutTrait$1, SelfLayoutProps$1>;
|
|
317
|
-
radius: PropsTransformer<RadiusTrait$1, RadiusProps$1>;
|
|
318
|
-
frameFill: PropsTransformer<FillTrait$1, FillProps>;
|
|
319
|
-
shapeFill: PropsTransformer<FillTrait$1, FillProps>;
|
|
320
|
-
textFill: PropsTransformer<FillTrait$1, FillProps>;
|
|
321
|
-
stroke: PropsTransformer<StrokeTrait$1, StrokeProps$1>;
|
|
322
|
-
typeStyle: PropsTransformer<TypeStyleTrait$1, TypeStyleProps$1>;
|
|
323
|
-
}
|
|
324
|
-
type ContainerLayoutTrait$1 = NormalizedHasFramePropertiesTrait & NormalizedHasChildrenTrait & NormalizedHasLayoutTrait & NormalizedIsLayerTrait;
|
|
325
|
-
type SelfLayoutTrait$1 = NormalizedIsLayerTrait & NormalizedHasLayoutTrait;
|
|
326
|
-
type RadiusTrait$1 = NormalizedCornerTrait & NormalizedIsLayerTrait;
|
|
327
|
-
type FillTrait$1 = NormalizedIsLayerTrait & NormalizedHasGeometryTrait;
|
|
328
|
-
type StrokeTrait$1 = NormalizedIsLayerTrait & NormalizedHasGeometryTrait;
|
|
329
|
-
type TypeStyleTrait$1 = NormalizedTypePropertiesTrait & NormalizedIsLayerTrait;
|
|
330
|
-
interface ContainerLayoutProps$1 {
|
|
331
|
-
layoutMode?: "HORIZONTAL" | "VERTICAL" | "NONE";
|
|
332
|
-
primaryAxisAlignItems?: "MIN" | "CENTER" | "MAX" | "SPACE_BETWEEN";
|
|
333
|
-
counterAxisAlignItems?: "MIN" | "CENTER" | "MAX" | "BASELINE";
|
|
334
|
-
layoutWrap?: "WRAP" | "NO_WRAP";
|
|
335
|
-
itemSpacing?: number | string;
|
|
336
|
-
paddingTop?: number | string;
|
|
337
|
-
paddingBottom?: number | string;
|
|
338
|
-
paddingLeft?: number | string;
|
|
339
|
-
paddingRight?: number | string;
|
|
340
|
-
horizontalPadding?: number | string;
|
|
341
|
-
verticalPadding?: number | string;
|
|
342
|
-
}
|
|
343
|
-
type FigmaValueTransformer = ValueTransformer<string, number, number, number>;
|
|
344
|
-
declare function createContainerLayoutPropsTransformer$1(valueTransformer: FigmaValueTransformer): PropsTransformer<ContainerLayoutTrait$1, ContainerLayoutProps$1>;
|
|
345
|
-
interface SelfLayoutProps$1 {
|
|
346
|
-
layoutGrow?: number;
|
|
347
|
-
layoutAlign?: "STRETCH" | "INHERIT" | "MIN" | "CENTER" | "MAX";
|
|
348
|
-
layoutSizingVertical?: "FIXED" | "HUG" | "FILL";
|
|
349
|
-
layoutSizingHorizontal?: "FIXED" | "HUG" | "FILL";
|
|
350
|
-
width?: string | number;
|
|
351
|
-
height?: string | number;
|
|
352
|
-
minWidth?: string | number;
|
|
353
|
-
minHeight?: string | number;
|
|
354
|
-
maxWidth?: string | number;
|
|
355
|
-
maxHeight?: string | number;
|
|
356
|
-
}
|
|
357
|
-
declare function createSelfLayoutPropsTransformer$1(valueTransformer: FigmaValueTransformer): PropsTransformer<SelfLayoutTrait$1, SelfLayoutProps$1>;
|
|
358
|
-
interface RadiusProps$1 {
|
|
359
|
-
cornerRadius?: number | string;
|
|
360
|
-
topLeftRadius?: number | string;
|
|
361
|
-
topRightRadius?: number | string;
|
|
362
|
-
bottomLeftRadius?: number | string;
|
|
363
|
-
bottomRightRadius?: number | string;
|
|
364
|
-
}
|
|
365
|
-
declare function createRadiusPropsTransformer$1(valueTransformer: FigmaValueTransformer): PropsTransformer<RadiusTrait$1, RadiusProps$1>;
|
|
366
|
-
interface FillProps {
|
|
367
|
-
fill?: string;
|
|
368
|
-
}
|
|
369
|
-
declare function createFrameFillPropsTransformer$1(valueTransformer: FigmaValueTransformer): PropsTransformer<FillTrait$1, FillProps>;
|
|
370
|
-
declare function createShapeFillPropsTransformer$1(valueTransformer: FigmaValueTransformer): PropsTransformer<FillTrait$1, FillProps>;
|
|
371
|
-
declare function createTextFillPropsTransformer$1(valueTransformer: FigmaValueTransformer): PropsTransformer<FillTrait$1, FillProps>;
|
|
372
|
-
interface StrokeProps$1 {
|
|
373
|
-
stroke?: string;
|
|
374
|
-
strokeWeight?: number;
|
|
375
|
-
}
|
|
376
|
-
declare function createStrokePropsTransformer$1(valueTransformer: FigmaValueTransformer): PropsTransformer<StrokeTrait$1, StrokeProps$1>;
|
|
377
|
-
interface TypeStyleProps$1 {
|
|
378
|
-
textStyle?: string;
|
|
379
|
-
fontSize?: string | number;
|
|
380
|
-
fontWeight?: string | number;
|
|
381
|
-
lineHeight?: string | number;
|
|
382
|
-
maxLines?: number;
|
|
383
|
-
}
|
|
384
|
-
declare function createTypeStylePropsTransformer$1({ valueTransformer, styleService, }: {
|
|
385
|
-
valueTransformer: FigmaValueTransformer;
|
|
386
|
-
styleService: StyleService;
|
|
387
|
-
}): PropsTransformer<TypeStyleTrait$1, TypeStyleProps$1>;
|
|
388
|
-
|
|
389
|
-
interface FrameTransformerDeps$1 {
|
|
390
|
-
propsTransformers: PropsTransformers$1;
|
|
391
|
-
}
|
|
392
|
-
declare function createFrameTransformer$1({ propsTransformers, }: FrameTransformerDeps$1): ElementTransformer<NormalizedFrameNode | NormalizedInstanceNode | NormalizedComponentNode>;
|
|
393
|
-
|
|
394
|
-
interface InstanceTransformerDeps$1 {
|
|
395
|
-
frameTransformer: ElementTransformer<NormalizedInstanceNode>;
|
|
396
|
-
}
|
|
397
|
-
declare function createInstanceTransformer$1({ frameTransformer, }: InstanceTransformerDeps$1): ElementTransformer<NormalizedInstanceNode>;
|
|
398
|
-
|
|
399
|
-
interface RectangleTransformerDeps$1 {
|
|
400
|
-
propsTransformers: PropsTransformers$1;
|
|
401
|
-
}
|
|
402
|
-
declare function createRectangleTransformer$1({ propsTransformers, }: RectangleTransformerDeps$1): ElementTransformer<NormalizedRectangleNode>;
|
|
403
|
-
interface VectorTransformerDeps {
|
|
404
|
-
propsTransformers: PropsTransformers$1;
|
|
405
|
-
}
|
|
406
|
-
declare function createVectorTransformer$1({ propsTransformers, }: VectorTransformerDeps): ElementTransformer<NormalizedVectorNode>;
|
|
407
|
-
interface BooleanOperationTransformerDeps {
|
|
408
|
-
propsTransformers: PropsTransformers$1;
|
|
409
|
-
}
|
|
410
|
-
declare function createBooleanOperationTransformer$1({ propsTransformers, }: BooleanOperationTransformerDeps): ElementTransformer<NormalizedBooleanOperationNode>;
|
|
411
|
-
|
|
412
|
-
interface TextTransformerDeps$1 {
|
|
413
|
-
propsTransformers: PropsTransformers$1;
|
|
414
|
-
}
|
|
415
|
-
declare function createTextTransformer$1({ propsTransformers, }: TextTransformerDeps$1): ElementTransformer<NormalizedTextNode>;
|
|
416
|
-
|
|
417
|
-
type index$1_BooleanOperationTransformerDeps = BooleanOperationTransformerDeps;
|
|
418
|
-
type index$1_FillProps = FillProps;
|
|
419
|
-
type index$1_VectorTransformerDeps = VectorTransformerDeps;
|
|
420
|
-
declare namespace index$1 {
|
|
421
|
-
export { createBooleanOperationTransformer$1 as createBooleanOperationTransformer, createContainerLayoutPropsTransformer$1 as createContainerLayoutPropsTransformer, createContext$1 as createContext, createFrameFillPropsTransformer$1 as createFrameFillPropsTransformer, createFrameTransformer$1 as createFrameTransformer, createInstanceTransformer$1 as createInstanceTransformer, createRadiusPropsTransformer$1 as createRadiusPropsTransformer, createRectangleTransformer$1 as createRectangleTransformer, createSelfLayoutPropsTransformer$1 as createSelfLayoutPropsTransformer, createShapeFillPropsTransformer$1 as createShapeFillPropsTransformer, createStrokePropsTransformer$1 as createStrokePropsTransformer, createTextFillPropsTransformer$1 as createTextFillPropsTransformer, createTextTransformer$1 as createTextTransformer, createTypeStylePropsTransformer$1 as createTypeStylePropsTransformer, createVectorTransformer$1 as createVectorTransformer };
|
|
422
|
-
export type { index$1_BooleanOperationTransformerDeps as BooleanOperationTransformerDeps, ContainerLayoutProps$1 as ContainerLayoutProps, ContainerLayoutTrait$1 as ContainerLayoutTrait, CreateContextOptions$1 as CreateContextOptions, index$1_FillProps as FillProps, FillTrait$1 as FillTrait, FrameTransformerDeps$1 as FrameTransformerDeps, InstanceTransformerDeps$1 as InstanceTransformerDeps, PropsTransformers$1 as PropsTransformers, RadiusProps$1 as RadiusProps, RadiusTrait$1 as RadiusTrait, RectangleTransformerDeps$1 as RectangleTransformerDeps, SelfLayoutProps$1 as SelfLayoutProps, SelfLayoutTrait$1 as SelfLayoutTrait, StrokeProps$1 as StrokeProps, StrokeTrait$1 as StrokeTrait, TextTransformerDeps$1 as TextTransformerDeps, TypeStyleProps$1 as TypeStyleProps, TypeStyleTrait$1 as TypeStyleTrait, index$1_VectorTransformerDeps as VectorTransformerDeps };
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
interface PropsTransformers {
|
|
426
|
-
containerLayout: PropsTransformer<ContainerLayoutTrait, ContainerLayoutProps>;
|
|
427
|
-
selfLayout: PropsTransformer<SelfLayoutTrait, SelfLayoutProps>;
|
|
428
|
-
iconSelfLayout: PropsTransformer<SelfLayoutTrait, IconSelfLayoutProps>;
|
|
429
|
-
radius: PropsTransformer<RadiusTrait, RadiusProps>;
|
|
430
|
-
frameFill: PropsTransformer<FillTrait, FrameFillProps>;
|
|
431
|
-
shapeFill: PropsTransformer<FillTrait, ShapeFillProps>;
|
|
432
|
-
textFill: PropsTransformer<FillTrait, TextFillProps>;
|
|
433
|
-
stroke: PropsTransformer<StrokeTrait, StrokeProps>;
|
|
434
|
-
typeStyle: PropsTransformer<TypeStyleTrait, TypeStyleProps>;
|
|
435
|
-
}
|
|
436
|
-
type ContainerLayoutTrait = NormalizedHasFramePropertiesTrait & NormalizedHasChildrenTrait & NormalizedHasLayoutTrait & NormalizedIsLayerTrait;
|
|
437
|
-
type SelfLayoutTrait = NormalizedIsLayerTrait & NormalizedHasLayoutTrait;
|
|
438
|
-
type RadiusTrait = NormalizedCornerTrait & NormalizedIsLayerTrait;
|
|
439
|
-
type FillTrait = NormalizedIsLayerTrait & NormalizedHasGeometryTrait;
|
|
440
|
-
type StrokeTrait = NormalizedIsLayerTrait & NormalizedHasGeometryTrait;
|
|
441
|
-
type TypeStyleTrait = NormalizedTypePropertiesTrait & NormalizedIsLayerTrait;
|
|
442
|
-
interface ContainerLayoutProps {
|
|
443
|
-
direction?: "row" | "column";
|
|
444
|
-
justify?: "flex-start" | "center" | "flex-end" | "space-between";
|
|
445
|
-
align?: "stretch" | "flex-start" | "center" | "flex-end" | "baseline";
|
|
446
|
-
wrap?: "wrap" | "nowrap" | true;
|
|
447
|
-
gap?: string | 0;
|
|
448
|
-
pb?: string | 0;
|
|
449
|
-
pl?: string | 0;
|
|
450
|
-
pr?: string | 0;
|
|
451
|
-
pt?: string | 0;
|
|
452
|
-
px?: string | 0;
|
|
453
|
-
py?: string | 0;
|
|
454
|
-
p?: string | 0;
|
|
455
|
-
}
|
|
456
|
-
type ReactValueTransformer = ValueTransformer<string, string, string, number>;
|
|
457
|
-
declare function createContainerLayoutPropsTransformer(valueTransformer: ReactValueTransformer): PropsTransformer<ContainerLayoutTrait, ContainerLayoutProps>;
|
|
458
|
-
interface SelfLayoutProps {
|
|
459
|
-
grow?: 0 | 1 | true;
|
|
460
|
-
alignSelf?: "stretch";
|
|
461
|
-
width?: string | number;
|
|
462
|
-
height?: string | number;
|
|
463
|
-
minWidth?: string | number;
|
|
464
|
-
minHeight?: string | number;
|
|
465
|
-
maxWidth?: string | number;
|
|
466
|
-
maxHeight?: string | number;
|
|
467
|
-
}
|
|
468
|
-
declare function createSelfLayoutPropsTransformer(valueTransformer: ReactValueTransformer): PropsTransformer<SelfLayoutTrait, SelfLayoutProps>;
|
|
469
|
-
interface IconSelfLayoutProps {
|
|
470
|
-
size?: string | number;
|
|
471
|
-
}
|
|
472
|
-
declare function createIconSelfLayoutPropsTransformer(valueTransformer: ReactValueTransformer): PropsTransformer<SelfLayoutTrait, IconSelfLayoutProps>;
|
|
473
|
-
interface RadiusProps {
|
|
474
|
-
borderRadius?: string | 0;
|
|
475
|
-
borderTopLeftRadius?: string | 0;
|
|
476
|
-
borderTopRightRadius?: string | 0;
|
|
477
|
-
borderBottomLeftRadius?: string | 0;
|
|
478
|
-
borderBottomRightRadius?: string | 0;
|
|
479
|
-
}
|
|
480
|
-
declare function createRadiusPropsTransformer(valueTransformer: ReactValueTransformer): PropsTransformer<RadiusTrait, RadiusProps>;
|
|
481
|
-
interface TypeStyleProps {
|
|
482
|
-
textStyle?: string;
|
|
483
|
-
fontSize?: string;
|
|
484
|
-
fontWeight?: string | number;
|
|
485
|
-
lineHeight?: string;
|
|
486
|
-
maxLines?: number;
|
|
487
|
-
}
|
|
488
|
-
declare function createTypeStylePropsTransformer({ valueTransformer, styleService, }: {
|
|
489
|
-
valueTransformer: ReactValueTransformer;
|
|
490
|
-
styleService: StyleService;
|
|
491
|
-
}): PropsTransformer<TypeStyleTrait, TypeStyleProps>;
|
|
492
|
-
interface FrameFillProps {
|
|
493
|
-
bg?: string;
|
|
494
|
-
}
|
|
495
|
-
declare function createFrameFillPropsTransformer(valueTransformer: ReactValueTransformer): PropsTransformer<FillTrait, FrameFillProps>;
|
|
496
|
-
interface ShapeFillProps {
|
|
497
|
-
color?: string;
|
|
498
|
-
}
|
|
499
|
-
declare function createShapeFillPropsTransformer(valueTransformer: ReactValueTransformer): PropsTransformer<FillTrait, ShapeFillProps>;
|
|
500
|
-
interface TextFillProps {
|
|
501
|
-
color?: string;
|
|
502
|
-
}
|
|
503
|
-
declare function createTextFillPropsTransformer(valueTransformer: ReactValueTransformer): PropsTransformer<FillTrait, TextFillProps>;
|
|
504
|
-
interface StrokeProps {
|
|
505
|
-
borderWidth?: number;
|
|
506
|
-
borderColor?: string;
|
|
507
|
-
}
|
|
508
|
-
declare function createStrokePropsTransformer(valueTransformer: ReactValueTransformer): PropsTransformer<StrokeTrait, StrokeProps>;
|
|
509
|
-
|
|
510
|
-
interface RectangleTransformerDeps {
|
|
511
|
-
propsTransformers: PropsTransformers;
|
|
512
|
-
}
|
|
513
|
-
declare function createRectangleTransformer({ propsTransformers, }: RectangleTransformerDeps): ElementTransformer<NormalizedRectangleNode>;
|
|
514
|
-
declare function createVectorTransformer(): ElementTransformer<NormalizedVectorNode>;
|
|
515
|
-
declare function createBooleanOperationTransformer(): ElementTransformer<NormalizedBooleanOperationNode>;
|
|
516
|
-
|
|
517
|
-
interface FrameTransformerDeps {
|
|
518
|
-
propsTransformers: PropsTransformers;
|
|
519
|
-
}
|
|
520
|
-
declare function createFrameTransformer({ propsTransformers, }: FrameTransformerDeps): ElementTransformer<NormalizedFrameNode | NormalizedInstanceNode | NormalizedComponentNode>;
|
|
521
|
-
|
|
522
|
-
interface InstanceTransformerDeps {
|
|
523
|
-
iconService?: IconService;
|
|
524
|
-
ignoredComponentKeys?: Set<string>;
|
|
525
|
-
propsTransformers: PropsTransformers;
|
|
526
|
-
componentTransformers: Record<string, ComponentTransformer>;
|
|
527
|
-
frameTransformer: ElementTransformer<NormalizedInstanceNode>;
|
|
528
|
-
}
|
|
529
|
-
declare function createInstanceTransformer({ iconService, ignoredComponentKeys, propsTransformers, componentTransformers, frameTransformer, }: InstanceTransformerDeps): ElementTransformer<NormalizedInstanceNode>;
|
|
530
|
-
|
|
531
|
-
interface TextTransformerDeps {
|
|
532
|
-
propsTransformers: PropsTransformers;
|
|
533
|
-
}
|
|
534
|
-
declare function createTextTransformer({ propsTransformers, }: TextTransformerDeps): ElementTransformer<NormalizedTextNode>;
|
|
535
|
-
|
|
536
|
-
interface SeedComponentTransformerDeps {
|
|
537
|
-
iconService: IconService;
|
|
538
|
-
variableService: VariableService;
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
declare const metadata$v: {
|
|
542
|
-
"name": "🔵 [Template] Select Box Group",
|
|
543
|
-
"key": "a3d58bb8540600878742cdcf2608a4b3851667ec",
|
|
544
|
-
"componentPropertyDefinitions": {
|
|
545
|
-
"Control": {
|
|
546
|
-
"type": "VARIANT",
|
|
547
|
-
"variantOptions": [
|
|
548
|
-
"Checkbox",
|
|
549
|
-
"Radio"
|
|
550
|
-
]
|
|
551
|
-
},
|
|
552
|
-
"Item Count": {
|
|
553
|
-
"type": "VARIANT",
|
|
554
|
-
"variantOptions": [
|
|
555
|
-
"1",
|
|
556
|
-
"2",
|
|
557
|
-
"3",
|
|
558
|
-
"4",
|
|
559
|
-
"5",
|
|
560
|
-
"6"
|
|
561
|
-
]
|
|
562
|
-
}
|
|
563
|
-
}
|
|
564
|
-
};
|
|
565
|
-
|
|
566
|
-
declare const metadata$u: {
|
|
567
|
-
"name": "🟢 Action Button",
|
|
568
|
-
"key": "450ede9d0bf42fc6ef14345c77e6e407d6d5ee89",
|
|
569
|
-
"componentPropertyDefinitions": {
|
|
570
|
-
"Suffix Icon#5987:244": {
|
|
571
|
-
"type": "INSTANCE_SWAP",
|
|
572
|
-
"preferredValues": []
|
|
573
|
-
},
|
|
574
|
-
"Icon#7574:0": {
|
|
575
|
-
"type": "INSTANCE_SWAP",
|
|
576
|
-
"preferredValues": []
|
|
577
|
-
},
|
|
578
|
-
"Prefix Icon#5987:305": {
|
|
579
|
-
"type": "INSTANCE_SWAP",
|
|
580
|
-
"preferredValues": []
|
|
581
|
-
},
|
|
582
|
-
"Label#5987:61": {
|
|
583
|
-
"type": "TEXT"
|
|
584
|
-
},
|
|
585
|
-
"Size": {
|
|
586
|
-
"type": "VARIANT",
|
|
587
|
-
"variantOptions": [
|
|
588
|
-
"XSmall",
|
|
589
|
-
"Small",
|
|
590
|
-
"Medium",
|
|
591
|
-
"Large"
|
|
592
|
-
]
|
|
593
|
-
},
|
|
594
|
-
"Layout": {
|
|
595
|
-
"type": "VARIANT",
|
|
596
|
-
"variantOptions": [
|
|
597
|
-
"Text Only",
|
|
598
|
-
"Icon First",
|
|
599
|
-
"Icon Last",
|
|
600
|
-
"Icon Only"
|
|
601
|
-
]
|
|
602
|
-
},
|
|
603
|
-
"Variant": {
|
|
604
|
-
"type": "VARIANT",
|
|
605
|
-
"variantOptions": [
|
|
606
|
-
"Neutral Solid",
|
|
607
|
-
"Neutral Weak",
|
|
608
|
-
"Neutral Outline",
|
|
609
|
-
"Brand Solid",
|
|
610
|
-
"Brand Outline",
|
|
611
|
-
"Critical Solid"
|
|
612
|
-
]
|
|
613
|
-
},
|
|
614
|
-
"State": {
|
|
615
|
-
"type": "VARIANT",
|
|
616
|
-
"variantOptions": [
|
|
617
|
-
"Enabled",
|
|
618
|
-
"Pressed",
|
|
619
|
-
"Loading",
|
|
620
|
-
"Disabled"
|
|
621
|
-
]
|
|
622
|
-
}
|
|
623
|
-
}
|
|
624
|
-
};
|
|
625
|
-
|
|
626
|
-
declare const metadata$t: {
|
|
627
|
-
"name": "🟢 Action Chip",
|
|
628
|
-
"key": "3d21594ef116e94a9465d507447b858aea062575",
|
|
629
|
-
"componentPropertyDefinitions": {
|
|
630
|
-
"Icon#8714:0": {
|
|
631
|
-
"type": "INSTANCE_SWAP",
|
|
632
|
-
"preferredValues": []
|
|
633
|
-
},
|
|
634
|
-
"Prefix Icon#8711:0": {
|
|
635
|
-
"type": "INSTANCE_SWAP",
|
|
636
|
-
"preferredValues": [
|
|
637
|
-
{
|
|
638
|
-
"type": "COMPONENT_SET",
|
|
639
|
-
"key": "8ed05ef62a40f2dc034ee7eb6945bd0e63ad49aa"
|
|
640
|
-
}
|
|
641
|
-
]
|
|
642
|
-
},
|
|
643
|
-
"Suffix Icon#8711:3": {
|
|
644
|
-
"type": "INSTANCE_SWAP",
|
|
645
|
-
"preferredValues": []
|
|
646
|
-
},
|
|
647
|
-
"Label#7185:0": {
|
|
648
|
-
"type": "TEXT"
|
|
649
|
-
},
|
|
650
|
-
"Show Count#7185:42": {
|
|
651
|
-
"type": "BOOLEAN"
|
|
652
|
-
},
|
|
653
|
-
"Count#7185:21": {
|
|
654
|
-
"type": "TEXT"
|
|
655
|
-
},
|
|
656
|
-
"Size": {
|
|
657
|
-
"type": "VARIANT",
|
|
658
|
-
"variantOptions": [
|
|
659
|
-
"Medium",
|
|
660
|
-
"Small"
|
|
661
|
-
]
|
|
662
|
-
},
|
|
663
|
-
"Layout": {
|
|
664
|
-
"type": "VARIANT",
|
|
665
|
-
"variantOptions": [
|
|
666
|
-
"Text Only",
|
|
667
|
-
"Icon First",
|
|
668
|
-
"Icon Last",
|
|
669
|
-
"Icon Both",
|
|
670
|
-
"Icon Only"
|
|
671
|
-
]
|
|
672
|
-
},
|
|
673
|
-
"State": {
|
|
674
|
-
"type": "VARIANT",
|
|
675
|
-
"variantOptions": [
|
|
676
|
-
"Enabled",
|
|
677
|
-
"Pressed",
|
|
678
|
-
"Disabled"
|
|
679
|
-
]
|
|
680
|
-
}
|
|
681
|
-
}
|
|
682
|
-
};
|
|
683
|
-
|
|
684
|
-
declare const metadata$s: {
|
|
685
|
-
"name": "🟢 Action Sheet",
|
|
686
|
-
"key": "7c29b70b7e71618e1894c26f61f336de2730d76e",
|
|
687
|
-
"componentPropertyDefinitions": {
|
|
688
|
-
"Description#15641:70": {
|
|
689
|
-
"type": "TEXT"
|
|
690
|
-
},
|
|
691
|
-
"Title#15641:37": {
|
|
692
|
-
"type": "TEXT"
|
|
693
|
-
},
|
|
694
|
-
"OS Indicator (Figma Only)#15641:20": {
|
|
695
|
-
"type": "BOOLEAN"
|
|
696
|
-
},
|
|
697
|
-
"Type": {
|
|
698
|
-
"type": "VARIANT",
|
|
699
|
-
"variantOptions": [
|
|
700
|
-
"Normal",
|
|
701
|
-
"Destructive"
|
|
702
|
-
]
|
|
703
|
-
},
|
|
704
|
-
"Header": {
|
|
705
|
-
"type": "VARIANT",
|
|
706
|
-
"variantOptions": [
|
|
707
|
-
"Title Only",
|
|
708
|
-
"Description Only",
|
|
709
|
-
"Title With Description",
|
|
710
|
-
"None"
|
|
711
|
-
]
|
|
712
|
-
},
|
|
713
|
-
"Action Count": {
|
|
714
|
-
"type": "VARIANT",
|
|
715
|
-
"variantOptions": [
|
|
716
|
-
"1",
|
|
717
|
-
"2",
|
|
718
|
-
"3",
|
|
719
|
-
"4"
|
|
720
|
-
]
|
|
721
|
-
}
|
|
722
|
-
}
|
|
723
|
-
};
|
|
724
|
-
|
|
725
|
-
declare const metadata$r: {
|
|
726
|
-
"name": "🟢 Avatar",
|
|
727
|
-
"key": "d71644aeba2e29deda366798fdfe35977166d120",
|
|
728
|
-
"componentPropertyDefinitions": {
|
|
729
|
-
"Show Image#71850:57": {
|
|
730
|
-
"type": "BOOLEAN"
|
|
731
|
-
},
|
|
732
|
-
"Show Badge#1398:26": {
|
|
733
|
-
"type": "BOOLEAN"
|
|
734
|
-
},
|
|
735
|
-
"Size": {
|
|
736
|
-
"type": "VARIANT",
|
|
737
|
-
"variantOptions": [
|
|
738
|
-
"20",
|
|
739
|
-
"24",
|
|
740
|
-
"36",
|
|
741
|
-
"42",
|
|
742
|
-
"48",
|
|
743
|
-
"64",
|
|
744
|
-
"80",
|
|
745
|
-
"96"
|
|
746
|
-
]
|
|
747
|
-
}
|
|
748
|
-
}
|
|
749
|
-
};
|
|
750
|
-
|
|
751
|
-
declare const metadata$q: {
|
|
752
|
-
"name": "🟢 Avatar Stack",
|
|
753
|
-
"key": "019467fdad2192abb48699dcfb79e344df04b799",
|
|
754
|
-
"componentPropertyDefinitions": {
|
|
755
|
-
"Size": {
|
|
756
|
-
"type": "VARIANT",
|
|
757
|
-
"variantOptions": [
|
|
758
|
-
"20",
|
|
759
|
-
"24",
|
|
760
|
-
"36",
|
|
761
|
-
"48",
|
|
762
|
-
"64"
|
|
763
|
-
]
|
|
764
|
-
},
|
|
765
|
-
"Item Count": {
|
|
766
|
-
"type": "VARIANT",
|
|
767
|
-
"variantOptions": [
|
|
768
|
-
"2",
|
|
769
|
-
"3",
|
|
770
|
-
"4",
|
|
771
|
-
"5"
|
|
772
|
-
]
|
|
773
|
-
},
|
|
774
|
-
"Top Item": {
|
|
775
|
-
"type": "VARIANT",
|
|
776
|
-
"variantOptions": [
|
|
777
|
-
"Last Item",
|
|
778
|
-
"First Item"
|
|
779
|
-
]
|
|
780
|
-
}
|
|
781
|
-
}
|
|
782
|
-
};
|
|
783
|
-
|
|
784
|
-
declare const metadata$p: {
|
|
785
|
-
"name": "🟢 Badge",
|
|
786
|
-
"key": "04609a35d47a1a0ef4904b3c25f79451892a85a1",
|
|
787
|
-
"componentPropertyDefinitions": {
|
|
788
|
-
"Label#1584:0": {
|
|
789
|
-
"type": "TEXT"
|
|
790
|
-
},
|
|
791
|
-
"Size": {
|
|
792
|
-
"type": "VARIANT",
|
|
793
|
-
"variantOptions": [
|
|
794
|
-
"Medium",
|
|
795
|
-
"Large"
|
|
796
|
-
]
|
|
797
|
-
},
|
|
798
|
-
"Tone": {
|
|
799
|
-
"type": "VARIANT",
|
|
800
|
-
"variantOptions": [
|
|
801
|
-
"Neutral",
|
|
802
|
-
"Brand",
|
|
803
|
-
"Informative",
|
|
804
|
-
"Positive",
|
|
805
|
-
"Critical"
|
|
806
|
-
]
|
|
807
|
-
},
|
|
808
|
-
"Variant": {
|
|
809
|
-
"type": "VARIANT",
|
|
810
|
-
"variantOptions": [
|
|
811
|
-
"Solid",
|
|
812
|
-
"Weak",
|
|
813
|
-
"Outline"
|
|
814
|
-
]
|
|
815
|
-
},
|
|
816
|
-
"Shape": {
|
|
817
|
-
"type": "VARIANT",
|
|
818
|
-
"variantOptions": [
|
|
819
|
-
"Rectangle",
|
|
820
|
-
"Pill"
|
|
821
|
-
]
|
|
822
|
-
}
|
|
823
|
-
}
|
|
824
|
-
};
|
|
825
|
-
|
|
826
|
-
declare const metadata$o: {
|
|
827
|
-
"name": "🟢 Callout",
|
|
828
|
-
"key": "ec46d38baac3c367c4a5ffa47a2110d51ba0a4fe",
|
|
829
|
-
"componentPropertyDefinitions": {
|
|
830
|
-
"Show Icon#12598:229": {
|
|
831
|
-
"type": "BOOLEAN"
|
|
832
|
-
},
|
|
833
|
-
"Icon#12598:210": {
|
|
834
|
-
"type": "INSTANCE_SWAP",
|
|
835
|
-
"preferredValues": [
|
|
836
|
-
{
|
|
837
|
-
"type": "COMPONENT_SET",
|
|
838
|
-
"key": "f2c04b68b0bec4ec9145d832de45947030d3b653"
|
|
839
|
-
}
|
|
840
|
-
]
|
|
841
|
-
},
|
|
842
|
-
"Interaction": {
|
|
843
|
-
"type": "VARIANT",
|
|
844
|
-
"variantOptions": [
|
|
845
|
-
"Default",
|
|
846
|
-
"Actionable",
|
|
847
|
-
"Dismissible"
|
|
848
|
-
]
|
|
849
|
-
},
|
|
850
|
-
"Tone": {
|
|
851
|
-
"type": "VARIANT",
|
|
852
|
-
"variantOptions": [
|
|
853
|
-
"Neutral",
|
|
854
|
-
"Informative",
|
|
855
|
-
"Warning",
|
|
856
|
-
"Critical",
|
|
857
|
-
"Magic"
|
|
858
|
-
]
|
|
859
|
-
},
|
|
860
|
-
"State": {
|
|
861
|
-
"type": "VARIANT",
|
|
862
|
-
"variantOptions": [
|
|
863
|
-
"Enabled",
|
|
864
|
-
"Pressed"
|
|
865
|
-
]
|
|
866
|
-
},
|
|
867
|
-
"Show Title": {
|
|
868
|
-
"type": "VARIANT",
|
|
869
|
-
"variantOptions": [
|
|
870
|
-
"True",
|
|
871
|
-
"False"
|
|
872
|
-
]
|
|
873
|
-
},
|
|
874
|
-
"Show Link Label": {
|
|
875
|
-
"type": "VARIANT",
|
|
876
|
-
"variantOptions": [
|
|
877
|
-
"True",
|
|
878
|
-
"False"
|
|
879
|
-
]
|
|
880
|
-
}
|
|
881
|
-
}
|
|
882
|
-
};
|
|
883
|
-
|
|
884
|
-
declare const metadata$n: {
|
|
885
|
-
"name": "🟢 Checkbox",
|
|
886
|
-
"key": "94a2f6957a86f8ae3b8c7ca200dfcd5e29f6075b",
|
|
887
|
-
"componentPropertyDefinitions": {
|
|
888
|
-
"Label#49990:0": {
|
|
889
|
-
"type": "TEXT"
|
|
890
|
-
},
|
|
891
|
-
"Size": {
|
|
892
|
-
"type": "VARIANT",
|
|
893
|
-
"variantOptions": [
|
|
894
|
-
"Medium",
|
|
895
|
-
"Large"
|
|
896
|
-
]
|
|
897
|
-
},
|
|
898
|
-
"Shape": {
|
|
899
|
-
"type": "VARIANT",
|
|
900
|
-
"variantOptions": [
|
|
901
|
-
"Square",
|
|
902
|
-
"Ghost"
|
|
903
|
-
]
|
|
904
|
-
},
|
|
905
|
-
"Weight": {
|
|
906
|
-
"type": "VARIANT",
|
|
907
|
-
"variantOptions": [
|
|
908
|
-
"Default",
|
|
909
|
-
"Stronger"
|
|
910
|
-
]
|
|
911
|
-
},
|
|
912
|
-
"State": {
|
|
913
|
-
"type": "VARIANT",
|
|
914
|
-
"variantOptions": [
|
|
915
|
-
"Enabled",
|
|
916
|
-
"Pressed",
|
|
917
|
-
"Selected",
|
|
918
|
-
"Selected-Pressed",
|
|
919
|
-
"Indeterminate",
|
|
920
|
-
"Indeterminate-Pressed",
|
|
921
|
-
"Disabled",
|
|
922
|
-
"Disabled-Selected",
|
|
923
|
-
"Disabled-Indeterminate"
|
|
924
|
-
]
|
|
925
|
-
}
|
|
926
|
-
}
|
|
927
|
-
};
|
|
928
|
-
|
|
929
|
-
declare const metadata$m: {
|
|
930
|
-
"name": "🟢 Chip Tablist",
|
|
931
|
-
"key": "d098159beacf7713e9116f0ef38d8a20f64ec84f",
|
|
932
|
-
"componentPropertyDefinitions": {
|
|
933
|
-
"Tab Count": {
|
|
934
|
-
"type": "VARIANT",
|
|
935
|
-
"variantOptions": [
|
|
936
|
-
"2",
|
|
937
|
-
"3",
|
|
938
|
-
"4",
|
|
939
|
-
"5",
|
|
940
|
-
"6",
|
|
941
|
-
"Max"
|
|
942
|
-
]
|
|
943
|
-
},
|
|
944
|
-
"Variant": {
|
|
945
|
-
"type": "VARIANT",
|
|
946
|
-
"variantOptions": [
|
|
947
|
-
"Neutral Solid",
|
|
948
|
-
"Brand Solid"
|
|
949
|
-
]
|
|
950
|
-
}
|
|
951
|
-
}
|
|
952
|
-
};
|
|
953
|
-
|
|
954
|
-
declare const metadata$l: {
|
|
955
|
-
"name": "🟢 Control Chip",
|
|
956
|
-
"key": "5780d56fc2f9bc4bbd6bc3db93949d8a8b7b7563",
|
|
957
|
-
"componentPropertyDefinitions": {
|
|
958
|
-
"Suffix Icon#8722:82": {
|
|
959
|
-
"type": "INSTANCE_SWAP",
|
|
960
|
-
"preferredValues": []
|
|
961
|
-
},
|
|
962
|
-
"Label#7185:0": {
|
|
963
|
-
"type": "TEXT"
|
|
964
|
-
},
|
|
965
|
-
"Show Count#7185:42": {
|
|
966
|
-
"type": "BOOLEAN"
|
|
967
|
-
},
|
|
968
|
-
"Icon#8722:41": {
|
|
969
|
-
"type": "INSTANCE_SWAP",
|
|
970
|
-
"preferredValues": []
|
|
971
|
-
},
|
|
972
|
-
"Prefix Icon#8722:0": {
|
|
973
|
-
"type": "INSTANCE_SWAP",
|
|
974
|
-
"preferredValues": [
|
|
975
|
-
{
|
|
976
|
-
"type": "COMPONENT_SET",
|
|
977
|
-
"key": "8ed05ef62a40f2dc034ee7eb6945bd0e63ad49aa"
|
|
978
|
-
}
|
|
979
|
-
]
|
|
980
|
-
},
|
|
981
|
-
"Count#7185:21": {
|
|
982
|
-
"type": "TEXT"
|
|
983
|
-
},
|
|
984
|
-
"Size": {
|
|
985
|
-
"type": "VARIANT",
|
|
986
|
-
"variantOptions": [
|
|
987
|
-
"Medium",
|
|
988
|
-
"Small"
|
|
989
|
-
]
|
|
990
|
-
},
|
|
991
|
-
"Layout": {
|
|
992
|
-
"type": "VARIANT",
|
|
993
|
-
"variantOptions": [
|
|
994
|
-
"Text Only",
|
|
995
|
-
"Icon First",
|
|
996
|
-
"Icon Last",
|
|
997
|
-
"Icon Both",
|
|
998
|
-
"Icon Only"
|
|
999
|
-
]
|
|
1000
|
-
},
|
|
1001
|
-
"State": {
|
|
1002
|
-
"type": "VARIANT",
|
|
1003
|
-
"variantOptions": [
|
|
1004
|
-
"Enabled",
|
|
1005
|
-
"Pressed",
|
|
1006
|
-
"Selected",
|
|
1007
|
-
"Selected-Pressed",
|
|
1008
|
-
"Disabled",
|
|
1009
|
-
"Disabled-Selected"
|
|
1010
|
-
]
|
|
1011
|
-
}
|
|
1012
|
-
}
|
|
1013
|
-
};
|
|
1014
|
-
|
|
1015
|
-
declare const metadata$k: {
|
|
1016
|
-
"name": "🟢 Error State",
|
|
1017
|
-
"key": "39b4ecd0b5b4d35f4dc5791765ca04aa062a5172",
|
|
1018
|
-
"componentPropertyDefinitions": {
|
|
1019
|
-
"Secondary Action Label#17042:0": {
|
|
1020
|
-
"type": "TEXT"
|
|
1021
|
-
},
|
|
1022
|
-
"Title#16237:0": {
|
|
1023
|
-
"type": "TEXT"
|
|
1024
|
-
},
|
|
1025
|
-
"Description#16237:5": {
|
|
1026
|
-
"type": "TEXT"
|
|
1027
|
-
},
|
|
1028
|
-
"Show Buttons#9080:5": {
|
|
1029
|
-
"type": "BOOLEAN"
|
|
1030
|
-
},
|
|
1031
|
-
"Variant": {
|
|
1032
|
-
"type": "VARIANT",
|
|
1033
|
-
"variantOptions": [
|
|
1034
|
-
"Default",
|
|
1035
|
-
"Basement"
|
|
1036
|
-
]
|
|
1037
|
-
},
|
|
1038
|
-
"Layout": {
|
|
1039
|
-
"type": "VARIANT",
|
|
1040
|
-
"variantOptions": [
|
|
1041
|
-
"With Title",
|
|
1042
|
-
"Description Only"
|
|
1043
|
-
]
|
|
1044
|
-
}
|
|
1045
|
-
}
|
|
1046
|
-
};
|
|
1047
|
-
|
|
1048
|
-
declare const metadata$j: {
|
|
1049
|
-
"name": "🟢 Extended Action Sheet",
|
|
1050
|
-
"key": "cd4cf8a850bf3de87b79080b36b421a649bf3fcb",
|
|
1051
|
-
"componentPropertyDefinitions": {
|
|
1052
|
-
"Show Title#17043:12": {
|
|
1053
|
-
"type": "BOOLEAN"
|
|
1054
|
-
},
|
|
1055
|
-
"OS Indicator (Figma Only)#81637:129": {
|
|
1056
|
-
"type": "BOOLEAN"
|
|
1057
|
-
},
|
|
1058
|
-
"Description#14599:13": {
|
|
1059
|
-
"type": "TEXT"
|
|
1060
|
-
},
|
|
1061
|
-
"Title#14599:0": {
|
|
1062
|
-
"type": "TEXT"
|
|
1063
|
-
},
|
|
1064
|
-
"Type": {
|
|
1065
|
-
"type": "VARIANT",
|
|
1066
|
-
"variantOptions": [
|
|
1067
|
-
"Normal",
|
|
1068
|
-
"Destructive"
|
|
1069
|
-
]
|
|
1070
|
-
},
|
|
1071
|
-
"Action Group Count": {
|
|
1072
|
-
"type": "VARIANT",
|
|
1073
|
-
"variantOptions": [
|
|
1074
|
-
"1",
|
|
1075
|
-
"2"
|
|
1076
|
-
]
|
|
1077
|
-
}
|
|
1078
|
-
}
|
|
1079
|
-
};
|
|
1080
|
-
|
|
1081
|
-
declare const metadata$i: {
|
|
1082
|
-
"name": "🟢 Extended Floating Action Button",
|
|
1083
|
-
"key": "032f3fddaad0aa3fa5a7f680768c1f5d02fb463f",
|
|
1084
|
-
"componentPropertyDefinitions": {
|
|
1085
|
-
"Label#28936:0": {
|
|
1086
|
-
"type": "TEXT"
|
|
1087
|
-
},
|
|
1088
|
-
"Icon#28796:0": {
|
|
1089
|
-
"type": "INSTANCE_SWAP",
|
|
1090
|
-
"preferredValues": []
|
|
1091
|
-
},
|
|
1092
|
-
"Size": {
|
|
1093
|
-
"type": "VARIANT",
|
|
1094
|
-
"variantOptions": [
|
|
1095
|
-
"Small",
|
|
1096
|
-
"Medium"
|
|
1097
|
-
]
|
|
1098
|
-
},
|
|
1099
|
-
"Variant": {
|
|
1100
|
-
"type": "VARIANT",
|
|
1101
|
-
"variantOptions": [
|
|
1102
|
-
"Neutral Solid",
|
|
1103
|
-
"Layer Floating"
|
|
1104
|
-
]
|
|
1105
|
-
},
|
|
1106
|
-
"State": {
|
|
1107
|
-
"type": "VARIANT",
|
|
1108
|
-
"variantOptions": [
|
|
1109
|
-
"Enabled",
|
|
1110
|
-
"Pressed"
|
|
1111
|
-
]
|
|
1112
|
-
}
|
|
1113
|
-
}
|
|
1114
|
-
};
|
|
1115
|
-
|
|
1116
|
-
declare const metadata$h: {
|
|
1117
|
-
"name": "🟢 Floating Action Button",
|
|
1118
|
-
"key": "1974b94703032585bb9e20bd54743e01094b965c",
|
|
1119
|
-
"componentPropertyDefinitions": {
|
|
1120
|
-
"Icon#28796:0": {
|
|
1121
|
-
"type": "INSTANCE_SWAP",
|
|
1122
|
-
"preferredValues": []
|
|
1123
|
-
},
|
|
1124
|
-
"State": {
|
|
1125
|
-
"type": "VARIANT",
|
|
1126
|
-
"variantOptions": [
|
|
1127
|
-
"Enabled",
|
|
1128
|
-
"Pressed"
|
|
1129
|
-
]
|
|
1130
|
-
}
|
|
1131
|
-
}
|
|
1132
|
-
};
|
|
1133
|
-
|
|
1134
|
-
declare const metadata$g: {
|
|
1135
|
-
"name": "🟢 Help Bubble",
|
|
1136
|
-
"key": "804b327c091278a40d5891939eaed90bb2889659",
|
|
1137
|
-
"componentPropertyDefinitions": {
|
|
1138
|
-
"Title#62535:0": {
|
|
1139
|
-
"type": "TEXT"
|
|
1140
|
-
},
|
|
1141
|
-
"Description#62535:98": {
|
|
1142
|
-
"type": "TEXT"
|
|
1143
|
-
},
|
|
1144
|
-
"Show Description#62499:0": {
|
|
1145
|
-
"type": "BOOLEAN"
|
|
1146
|
-
},
|
|
1147
|
-
"Placement": {
|
|
1148
|
-
"type": "VARIANT",
|
|
1149
|
-
"variantOptions": [
|
|
1150
|
-
"Right-Top",
|
|
1151
|
-
"Right-Center",
|
|
1152
|
-
"Right-Bottom",
|
|
1153
|
-
"Left-Top",
|
|
1154
|
-
"Left-Center",
|
|
1155
|
-
"Left-Bottom",
|
|
1156
|
-
"Bottom-Left",
|
|
1157
|
-
"Bottom-Center",
|
|
1158
|
-
"Bottom-Right",
|
|
1159
|
-
"Top-Left",
|
|
1160
|
-
"Top-Center",
|
|
1161
|
-
"Top-Right"
|
|
1162
|
-
]
|
|
1163
|
-
},
|
|
1164
|
-
"Show Close Button": {
|
|
1165
|
-
"type": "VARIANT",
|
|
1166
|
-
"variantOptions": [
|
|
1167
|
-
"True",
|
|
1168
|
-
"False"
|
|
1169
|
-
]
|
|
1170
|
-
}
|
|
1171
|
-
}
|
|
1172
|
-
};
|
|
1173
|
-
|
|
1174
|
-
declare const metadata$f: {
|
|
1175
|
-
"name": "🟢 Identity Placeholder",
|
|
1176
|
-
"key": "808206c07408aa1056ec85a55925e9844e9265c2",
|
|
1177
|
-
"componentPropertyDefinitions": {
|
|
1178
|
-
"Identity": {
|
|
1179
|
-
"type": "VARIANT",
|
|
1180
|
-
"variantOptions": [
|
|
1181
|
-
"Person",
|
|
1182
|
-
"Business"
|
|
1183
|
-
]
|
|
1184
|
-
}
|
|
1185
|
-
}
|
|
1186
|
-
};
|
|
1187
|
-
|
|
1188
|
-
declare const metadata$e: {
|
|
1189
|
-
"name": "🟢 Inline Banner",
|
|
1190
|
-
"key": "ce587d0f21754af05240cb32a4880227cb0ea1e1",
|
|
1191
|
-
"componentPropertyDefinitions": {
|
|
1192
|
-
"Show Icon#11840:27": {
|
|
1193
|
-
"type": "BOOLEAN"
|
|
1194
|
-
},
|
|
1195
|
-
"Link Label#1547:81": {
|
|
1196
|
-
"type": "TEXT"
|
|
1197
|
-
},
|
|
1198
|
-
"Interaction": {
|
|
1199
|
-
"type": "VARIANT",
|
|
1200
|
-
"variantOptions": [
|
|
1201
|
-
"Default",
|
|
1202
|
-
"Link",
|
|
1203
|
-
"Actionable",
|
|
1204
|
-
"Dismissible"
|
|
1205
|
-
]
|
|
1206
|
-
},
|
|
1207
|
-
"Variant": {
|
|
1208
|
-
"type": "VARIANT",
|
|
1209
|
-
"variantOptions": [
|
|
1210
|
-
"Neutral Weak",
|
|
1211
|
-
"Informative Weak",
|
|
1212
|
-
"Positive Weak",
|
|
1213
|
-
"Warning Solid",
|
|
1214
|
-
"Warning Weak",
|
|
1215
|
-
"Critical Solid",
|
|
1216
|
-
"Critical Weak"
|
|
1217
|
-
]
|
|
1218
|
-
},
|
|
1219
|
-
"Show Title": {
|
|
1220
|
-
"type": "VARIANT",
|
|
1221
|
-
"variantOptions": [
|
|
1222
|
-
"True",
|
|
1223
|
-
"False"
|
|
1224
|
-
]
|
|
1225
|
-
}
|
|
1226
|
-
}
|
|
1227
|
-
};
|
|
1228
|
-
|
|
1229
|
-
declare const metadata$d: {
|
|
1230
|
-
"name": "🟢 Manner Temp Badge",
|
|
1231
|
-
"key": "ac5331cec7a2c75b671df5b85ef247dfd820dd2f",
|
|
1232
|
-
"componentPropertyDefinitions": {
|
|
1233
|
-
"State": {
|
|
1234
|
-
"type": "VARIANT",
|
|
1235
|
-
"variantOptions": [
|
|
1236
|
-
"L1 (~29.9)",
|
|
1237
|
-
"L2 (30.0~36.2)",
|
|
1238
|
-
"L3 (36.3~37.5)",
|
|
1239
|
-
"L4 (37.6~41.9)",
|
|
1240
|
-
"L5 (42~51.9)",
|
|
1241
|
-
"L6 (52~)"
|
|
1242
|
-
]
|
|
1243
|
-
}
|
|
1244
|
-
}
|
|
1245
|
-
};
|
|
1246
|
-
|
|
1247
|
-
declare const metadata$c: {
|
|
1248
|
-
"name": "🟢 Multiline Text Field",
|
|
1249
|
-
"key": "88b2399c930c85f9ce2972163a078bc684b84bbe",
|
|
1250
|
-
"componentPropertyDefinitions": {
|
|
1251
|
-
"Indicator#15327:286": {
|
|
1252
|
-
"type": "TEXT"
|
|
1253
|
-
},
|
|
1254
|
-
"Character Count#15327:360": {
|
|
1255
|
-
"type": "TEXT"
|
|
1256
|
-
},
|
|
1257
|
-
"Max Character Count#15327:175": {
|
|
1258
|
-
"type": "TEXT"
|
|
1259
|
-
},
|
|
1260
|
-
"Label#15327:323": {
|
|
1261
|
-
"type": "TEXT"
|
|
1262
|
-
},
|
|
1263
|
-
"Filled Text#1304:0": {
|
|
1264
|
-
"type": "TEXT"
|
|
1265
|
-
},
|
|
1266
|
-
"Show Character count#958:75": {
|
|
1267
|
-
"type": "BOOLEAN"
|
|
1268
|
-
},
|
|
1269
|
-
"Show Footer#958:25": {
|
|
1270
|
-
"type": "BOOLEAN"
|
|
1271
|
-
},
|
|
1272
|
-
"Show Description#958:50": {
|
|
1273
|
-
"type": "BOOLEAN"
|
|
1274
|
-
},
|
|
1275
|
-
"Description#15327:212": {
|
|
1276
|
-
"type": "TEXT"
|
|
1277
|
-
},
|
|
1278
|
-
"Show Indicator#1259:0": {
|
|
1279
|
-
"type": "BOOLEAN"
|
|
1280
|
-
},
|
|
1281
|
-
"Placeholder#958:0": {
|
|
1282
|
-
"type": "TEXT"
|
|
1283
|
-
},
|
|
1284
|
-
"Show Header#870:0": {
|
|
1285
|
-
"type": "BOOLEAN"
|
|
1286
|
-
},
|
|
1287
|
-
"Size": {
|
|
1288
|
-
"type": "VARIANT",
|
|
1289
|
-
"variantOptions": [
|
|
1290
|
-
"Medium",
|
|
1291
|
-
"Large",
|
|
1292
|
-
"XLarge"
|
|
1293
|
-
]
|
|
1294
|
-
},
|
|
1295
|
-
"State": {
|
|
1296
|
-
"type": "VARIANT",
|
|
1297
|
-
"variantOptions": [
|
|
1298
|
-
"Enabled",
|
|
1299
|
-
"Focused",
|
|
1300
|
-
"Invalid",
|
|
1301
|
-
"Invalid-Focused",
|
|
1302
|
-
"Disabled",
|
|
1303
|
-
"Read Only"
|
|
1304
|
-
]
|
|
1305
|
-
},
|
|
1306
|
-
"Filled": {
|
|
1307
|
-
"type": "VARIANT",
|
|
1308
|
-
"variantOptions": [
|
|
1309
|
-
"True",
|
|
1310
|
-
"False"
|
|
1311
|
-
]
|
|
1312
|
-
}
|
|
1313
|
-
}
|
|
1314
|
-
};
|
|
1315
|
-
|
|
1316
|
-
declare const metadata$b: {
|
|
1317
|
-
"name": "🟢 Progress Circle",
|
|
1318
|
-
"key": "6e6779a372cab2485a0e25529bc4dbc9932a7346",
|
|
1319
|
-
"componentPropertyDefinitions": {
|
|
1320
|
-
"Size": {
|
|
1321
|
-
"type": "VARIANT",
|
|
1322
|
-
"variantOptions": [
|
|
1323
|
-
"24",
|
|
1324
|
-
"40"
|
|
1325
|
-
]
|
|
1326
|
-
},
|
|
1327
|
-
"Tone": {
|
|
1328
|
-
"type": "VARIANT",
|
|
1329
|
-
"variantOptions": [
|
|
1330
|
-
"Neutral",
|
|
1331
|
-
"Brand",
|
|
1332
|
-
"Static White"
|
|
1333
|
-
]
|
|
1334
|
-
},
|
|
1335
|
-
"Value": {
|
|
1336
|
-
"type": "VARIANT",
|
|
1337
|
-
"variantOptions": [
|
|
1338
|
-
"Indeterminate",
|
|
1339
|
-
"0%",
|
|
1340
|
-
"25%",
|
|
1341
|
-
"75%",
|
|
1342
|
-
"100%"
|
|
1343
|
-
]
|
|
1344
|
-
}
|
|
1345
|
-
}
|
|
1346
|
-
};
|
|
1347
|
-
|
|
1348
|
-
declare const metadata$a: {
|
|
1349
|
-
"name": "🟢 Reaction Button",
|
|
1350
|
-
"key": "ec43e4e881f7048e95601f8b58c01a0905a174e0",
|
|
1351
|
-
"componentPropertyDefinitions": {
|
|
1352
|
-
"Icon#12379:0": {
|
|
1353
|
-
"type": "INSTANCE_SWAP",
|
|
1354
|
-
"preferredValues": []
|
|
1355
|
-
},
|
|
1356
|
-
"Show Count#6397:33": {
|
|
1357
|
-
"type": "BOOLEAN"
|
|
1358
|
-
},
|
|
1359
|
-
"Count#15816:0": {
|
|
1360
|
-
"type": "TEXT"
|
|
1361
|
-
},
|
|
1362
|
-
"Label#6397:0": {
|
|
1363
|
-
"type": "TEXT"
|
|
1364
|
-
},
|
|
1365
|
-
"Size": {
|
|
1366
|
-
"type": "VARIANT",
|
|
1367
|
-
"variantOptions": [
|
|
1368
|
-
"XSmall",
|
|
1369
|
-
"Small"
|
|
1370
|
-
]
|
|
1371
|
-
},
|
|
1372
|
-
"State": {
|
|
1373
|
-
"type": "VARIANT",
|
|
1374
|
-
"variantOptions": [
|
|
1375
|
-
"Enabled",
|
|
1376
|
-
"Pressed",
|
|
1377
|
-
"Loading",
|
|
1378
|
-
"Selected",
|
|
1379
|
-
"Selected-Pressed",
|
|
1380
|
-
"Selected-Loading",
|
|
1381
|
-
"Disabled",
|
|
1382
|
-
"Disabled-Selected"
|
|
1383
|
-
]
|
|
1384
|
-
}
|
|
1385
|
-
}
|
|
1386
|
-
};
|
|
1387
|
-
|
|
1388
|
-
declare const metadata$9: {
|
|
1389
|
-
"name": "🟢 Segmented Control",
|
|
1390
|
-
"key": "3ad7133ba52755867f42f9232375f75639e00d58",
|
|
1391
|
-
"componentPropertyDefinitions": {
|
|
1392
|
-
"Item Count": {
|
|
1393
|
-
"type": "VARIANT",
|
|
1394
|
-
"variantOptions": [
|
|
1395
|
-
"2",
|
|
1396
|
-
"3",
|
|
1397
|
-
"4"
|
|
1398
|
-
]
|
|
1399
|
-
},
|
|
1400
|
-
"Selected Item": {
|
|
1401
|
-
"type": "VARIANT",
|
|
1402
|
-
"variantOptions": [
|
|
1403
|
-
"1",
|
|
1404
|
-
"2",
|
|
1405
|
-
"3",
|
|
1406
|
-
"4"
|
|
1407
|
-
]
|
|
1408
|
-
}
|
|
1409
|
-
}
|
|
1410
|
-
};
|
|
1411
|
-
|
|
1412
|
-
declare const metadata$8: {
|
|
1413
|
-
"name": "🟢 Select Box",
|
|
1414
|
-
"key": "38722ffeb4c966256a709155e8ddac50c93d7c60",
|
|
1415
|
-
"componentPropertyDefinitions": {
|
|
1416
|
-
"Label#3635:0": {
|
|
1417
|
-
"type": "TEXT"
|
|
1418
|
-
},
|
|
1419
|
-
"Description #3033:5": {
|
|
1420
|
-
"type": "TEXT"
|
|
1421
|
-
},
|
|
1422
|
-
"Show Description#3033:0": {
|
|
1423
|
-
"type": "BOOLEAN"
|
|
1424
|
-
},
|
|
1425
|
-
"Control": {
|
|
1426
|
-
"type": "VARIANT",
|
|
1427
|
-
"variantOptions": [
|
|
1428
|
-
"Checkbox",
|
|
1429
|
-
"Radio"
|
|
1430
|
-
]
|
|
1431
|
-
},
|
|
1432
|
-
"State": {
|
|
1433
|
-
"type": "VARIANT",
|
|
1434
|
-
"variantOptions": [
|
|
1435
|
-
"Enabled",
|
|
1436
|
-
"Pressed",
|
|
1437
|
-
"Selected",
|
|
1438
|
-
"Selected-Pressed"
|
|
1439
|
-
]
|
|
1440
|
-
}
|
|
1441
|
-
}
|
|
1442
|
-
};
|
|
1443
|
-
|
|
1444
|
-
declare const metadata$7: {
|
|
1445
|
-
"name": "🟢 Skeleton",
|
|
1446
|
-
"key": "ef22c3288722fbfa64a5ab73df397ade88f8e05a",
|
|
1447
|
-
"componentPropertyDefinitions": {
|
|
1448
|
-
"Radius": {
|
|
1449
|
-
"type": "VARIANT",
|
|
1450
|
-
"variantOptions": [
|
|
1451
|
-
"0",
|
|
1452
|
-
"8",
|
|
1453
|
-
"16",
|
|
1454
|
-
"Full"
|
|
1455
|
-
]
|
|
1456
|
-
}
|
|
1457
|
-
}
|
|
1458
|
-
};
|
|
1459
|
-
|
|
1460
|
-
declare const metadata$6: {
|
|
1461
|
-
"name": "🟢 Snackbar",
|
|
1462
|
-
"key": "81b17fb8c7d731a19cf8d36a8605559d41414eca",
|
|
1463
|
-
"componentPropertyDefinitions": {
|
|
1464
|
-
"Action Button Label#1528:8": {
|
|
1465
|
-
"type": "TEXT"
|
|
1466
|
-
},
|
|
1467
|
-
"Message#1528:4": {
|
|
1468
|
-
"type": "TEXT"
|
|
1469
|
-
},
|
|
1470
|
-
"Show Action Button#1528:0": {
|
|
1471
|
-
"type": "BOOLEAN"
|
|
1472
|
-
},
|
|
1473
|
-
"Variant": {
|
|
1474
|
-
"type": "VARIANT",
|
|
1475
|
-
"variantOptions": [
|
|
1476
|
-
"Default",
|
|
1477
|
-
"Positive",
|
|
1478
|
-
"Critical"
|
|
1479
|
-
]
|
|
1480
|
-
}
|
|
1481
|
-
}
|
|
1482
|
-
};
|
|
1483
|
-
|
|
1484
|
-
declare const metadata$5: {
|
|
1485
|
-
"name": "🟢 Standard Navigation",
|
|
1486
|
-
"key": "c07bfe331cf214375fce9ad47cb6fdb459d1fb1b",
|
|
1487
|
-
"componentPropertyDefinitions": {
|
|
1488
|
-
"Title#28176:5": {
|
|
1489
|
-
"type": "BOOLEAN"
|
|
1490
|
-
},
|
|
1491
|
-
"Variant": {
|
|
1492
|
-
"type": "VARIANT",
|
|
1493
|
-
"variantOptions": [
|
|
1494
|
-
"Layer Default",
|
|
1495
|
-
"Transparent"
|
|
1496
|
-
]
|
|
1497
|
-
},
|
|
1498
|
-
"OS": {
|
|
1499
|
-
"type": "VARIANT",
|
|
1500
|
-
"variantOptions": [
|
|
1501
|
-
"iOS",
|
|
1502
|
-
"Android"
|
|
1503
|
-
]
|
|
1504
|
-
}
|
|
1505
|
-
}
|
|
1506
|
-
};
|
|
1507
|
-
|
|
1508
|
-
declare const metadata$4: {
|
|
1509
|
-
"name": "🟢 Switch",
|
|
1510
|
-
"key": "80ce5a33b5ab713ab3bd2449472e2fb13d78c7f3",
|
|
1511
|
-
"componentPropertyDefinitions": {
|
|
1512
|
-
"Label#15191:2": {
|
|
1513
|
-
"type": "TEXT"
|
|
1514
|
-
},
|
|
1515
|
-
"Size": {
|
|
1516
|
-
"type": "VARIANT",
|
|
1517
|
-
"variantOptions": [
|
|
1518
|
-
"Small",
|
|
1519
|
-
"Medium"
|
|
1520
|
-
]
|
|
1521
|
-
},
|
|
1522
|
-
"State": {
|
|
1523
|
-
"type": "VARIANT",
|
|
1524
|
-
"variantOptions": [
|
|
1525
|
-
"Enabled",
|
|
1526
|
-
"Selected",
|
|
1527
|
-
"Disabled",
|
|
1528
|
-
"Disabled-Selected"
|
|
1529
|
-
]
|
|
1530
|
-
}
|
|
1531
|
-
}
|
|
1532
|
-
};
|
|
1533
|
-
|
|
1534
|
-
declare const metadata$3: {
|
|
1535
|
-
"name": "🟢 Tablist",
|
|
1536
|
-
"key": "ffe33411fb8796f7a95d3637b90150007f0dd954",
|
|
1537
|
-
"componentPropertyDefinitions": {
|
|
1538
|
-
"Size": {
|
|
1539
|
-
"type": "VARIANT",
|
|
1540
|
-
"variantOptions": [
|
|
1541
|
-
"Small",
|
|
1542
|
-
"Medium"
|
|
1543
|
-
]
|
|
1544
|
-
},
|
|
1545
|
-
"Layout": {
|
|
1546
|
-
"type": "VARIANT",
|
|
1547
|
-
"variantOptions": [
|
|
1548
|
-
"Hug",
|
|
1549
|
-
"Fill"
|
|
1550
|
-
]
|
|
1551
|
-
},
|
|
1552
|
-
"Tab Count": {
|
|
1553
|
-
"type": "VARIANT",
|
|
1554
|
-
"variantOptions": [
|
|
1555
|
-
"2",
|
|
1556
|
-
"3",
|
|
1557
|
-
"4",
|
|
1558
|
-
"5+"
|
|
1559
|
-
]
|
|
1560
|
-
}
|
|
1561
|
-
}
|
|
1562
|
-
};
|
|
1563
|
-
|
|
1564
|
-
declare const metadata$2: {
|
|
1565
|
-
"name": "🟢 Text Button",
|
|
1566
|
-
"key": "601f788792916250e33d04bd3165dee1404342df",
|
|
1567
|
-
"componentPropertyDefinitions": {
|
|
1568
|
-
"Prefix Icon#7561:0": {
|
|
1569
|
-
"type": "INSTANCE_SWAP",
|
|
1570
|
-
"preferredValues": []
|
|
1571
|
-
},
|
|
1572
|
-
"Label#6148:0": {
|
|
1573
|
-
"type": "TEXT"
|
|
1574
|
-
},
|
|
1575
|
-
"Size": {
|
|
1576
|
-
"type": "VARIANT",
|
|
1577
|
-
"variantOptions": [
|
|
1578
|
-
"Small",
|
|
1579
|
-
"Medium",
|
|
1580
|
-
"Large"
|
|
1581
|
-
]
|
|
1582
|
-
},
|
|
1583
|
-
"Layout": {
|
|
1584
|
-
"type": "VARIANT",
|
|
1585
|
-
"variantOptions": [
|
|
1586
|
-
"Icon First",
|
|
1587
|
-
"Icon Last"
|
|
1588
|
-
]
|
|
1589
|
-
},
|
|
1590
|
-
"Tone": {
|
|
1591
|
-
"type": "VARIANT",
|
|
1592
|
-
"variantOptions": [
|
|
1593
|
-
"Neutral",
|
|
1594
|
-
"Neutral Subtle",
|
|
1595
|
-
"Brand",
|
|
1596
|
-
"Critical"
|
|
1597
|
-
]
|
|
1598
|
-
},
|
|
1599
|
-
"State": {
|
|
1600
|
-
"type": "VARIANT",
|
|
1601
|
-
"variantOptions": [
|
|
1602
|
-
"Enabled",
|
|
1603
|
-
"Pressed",
|
|
1604
|
-
"Disabled"
|
|
1605
|
-
]
|
|
1606
|
-
}
|
|
1607
|
-
}
|
|
1608
|
-
};
|
|
1609
|
-
|
|
1610
|
-
declare const metadata$1: {
|
|
1611
|
-
"name": "🟢 Text Field",
|
|
1612
|
-
"key": "c49873c37a639f0dffdea4efd0eb43760d66c141",
|
|
1613
|
-
"componentPropertyDefinitions": {
|
|
1614
|
-
"Suffix Text#15327:138": {
|
|
1615
|
-
"type": "TEXT"
|
|
1616
|
-
},
|
|
1617
|
-
"Indicator#15327:249": {
|
|
1618
|
-
"type": "TEXT"
|
|
1619
|
-
},
|
|
1620
|
-
"Label#14964:0": {
|
|
1621
|
-
"type": "TEXT"
|
|
1622
|
-
},
|
|
1623
|
-
"Character Count#15327:64": {
|
|
1624
|
-
"type": "TEXT"
|
|
1625
|
-
},
|
|
1626
|
-
"Description#12626:5": {
|
|
1627
|
-
"type": "TEXT"
|
|
1628
|
-
},
|
|
1629
|
-
"Filled Text#1304:0": {
|
|
1630
|
-
"type": "TEXT"
|
|
1631
|
-
},
|
|
1632
|
-
"Show Suffix Icon#1267:75": {
|
|
1633
|
-
"type": "BOOLEAN"
|
|
1634
|
-
},
|
|
1635
|
-
"Show Prefix Icon#1267:50": {
|
|
1636
|
-
"type": "BOOLEAN"
|
|
1637
|
-
},
|
|
1638
|
-
"Prefix Icon#1267:25": {
|
|
1639
|
-
"type": "INSTANCE_SWAP",
|
|
1640
|
-
"preferredValues": []
|
|
1641
|
-
},
|
|
1642
|
-
"Show Prefix#958:125": {
|
|
1643
|
-
"type": "BOOLEAN"
|
|
1644
|
-
},
|
|
1645
|
-
"Show Suffix#958:100": {
|
|
1646
|
-
"type": "BOOLEAN"
|
|
1647
|
-
},
|
|
1648
|
-
"Show Character Count#958:75": {
|
|
1649
|
-
"type": "BOOLEAN"
|
|
1650
|
-
},
|
|
1651
|
-
"Show Footer#958:25": {
|
|
1652
|
-
"type": "BOOLEAN"
|
|
1653
|
-
},
|
|
1654
|
-
"Max Character Count#15327:27": {
|
|
1655
|
-
"type": "TEXT"
|
|
1656
|
-
},
|
|
1657
|
-
"Show Prefix Text#1267:0": {
|
|
1658
|
-
"type": "BOOLEAN"
|
|
1659
|
-
},
|
|
1660
|
-
"Show Suffix Text#1267:125": {
|
|
1661
|
-
"type": "BOOLEAN"
|
|
1662
|
-
},
|
|
1663
|
-
"Suffix Icon #1267:100": {
|
|
1664
|
-
"type": "INSTANCE_SWAP",
|
|
1665
|
-
"preferredValues": []
|
|
1666
|
-
},
|
|
1667
|
-
"Show Description#958:50": {
|
|
1668
|
-
"type": "BOOLEAN"
|
|
1669
|
-
},
|
|
1670
|
-
"Prefix Text#15327:101": {
|
|
1671
|
-
"type": "TEXT"
|
|
1672
|
-
},
|
|
1673
|
-
"Show Indicator#1259:0": {
|
|
1674
|
-
"type": "BOOLEAN"
|
|
1675
|
-
},
|
|
1676
|
-
"Placeholder#958:0": {
|
|
1677
|
-
"type": "TEXT"
|
|
1678
|
-
},
|
|
1679
|
-
"Show Header#870:0": {
|
|
1680
|
-
"type": "BOOLEAN"
|
|
1681
|
-
},
|
|
1682
|
-
"Size": {
|
|
1683
|
-
"type": "VARIANT",
|
|
1684
|
-
"variantOptions": [
|
|
1685
|
-
"Medium",
|
|
1686
|
-
"Large",
|
|
1687
|
-
"XLarge"
|
|
1688
|
-
]
|
|
1689
|
-
},
|
|
1690
|
-
"State": {
|
|
1691
|
-
"type": "VARIANT",
|
|
1692
|
-
"variantOptions": [
|
|
1693
|
-
"Enabled",
|
|
1694
|
-
"Focused",
|
|
1695
|
-
"Invalid",
|
|
1696
|
-
"Invalid-Focused",
|
|
1697
|
-
"Disabled",
|
|
1698
|
-
"Read Only"
|
|
1699
|
-
]
|
|
1700
|
-
},
|
|
1701
|
-
"Filled": {
|
|
1702
|
-
"type": "VARIANT",
|
|
1703
|
-
"variantOptions": [
|
|
1704
|
-
"True",
|
|
1705
|
-
"False"
|
|
1706
|
-
]
|
|
1707
|
-
}
|
|
1708
|
-
}
|
|
1709
|
-
};
|
|
1710
|
-
|
|
1711
|
-
declare const metadata: {
|
|
1712
|
-
"name": "🟢 Toggle Button",
|
|
1713
|
-
"key": "1d240ee5fd7a56879713e69cbea1b6f006f0ea22",
|
|
1714
|
-
"componentPropertyDefinitions": {
|
|
1715
|
-
"Suffix Icon#6122:343": {
|
|
1716
|
-
"type": "INSTANCE_SWAP",
|
|
1717
|
-
"preferredValues": []
|
|
1718
|
-
},
|
|
1719
|
-
"Show Prefix Icon#6122:392": {
|
|
1720
|
-
"type": "BOOLEAN"
|
|
1721
|
-
},
|
|
1722
|
-
"Show Suffix Icon#6122:147": {
|
|
1723
|
-
"type": "BOOLEAN"
|
|
1724
|
-
},
|
|
1725
|
-
"Prefix Icon#6122:98": {
|
|
1726
|
-
"type": "INSTANCE_SWAP",
|
|
1727
|
-
"preferredValues": []
|
|
1728
|
-
},
|
|
1729
|
-
"Label#6122:49": {
|
|
1730
|
-
"type": "TEXT"
|
|
1731
|
-
},
|
|
1732
|
-
"Size": {
|
|
1733
|
-
"type": "VARIANT",
|
|
1734
|
-
"variantOptions": [
|
|
1735
|
-
"Small",
|
|
1736
|
-
"XSmall"
|
|
1737
|
-
]
|
|
1738
|
-
},
|
|
1739
|
-
"Variant": {
|
|
1740
|
-
"type": "VARIANT",
|
|
1741
|
-
"variantOptions": [
|
|
1742
|
-
"Neutral Weak",
|
|
1743
|
-
"Brand Solid"
|
|
1744
|
-
]
|
|
1745
|
-
},
|
|
1746
|
-
"State": {
|
|
1747
|
-
"type": "VARIANT",
|
|
1748
|
-
"variantOptions": [
|
|
1749
|
-
"Enabled",
|
|
1750
|
-
"Pressed",
|
|
1751
|
-
"Loading",
|
|
1752
|
-
"Selected",
|
|
1753
|
-
"Selected-Pressed",
|
|
1754
|
-
"Selected-Loading",
|
|
1755
|
-
"Disabled",
|
|
1756
|
-
"Disabled-Selected"
|
|
1757
|
-
]
|
|
1758
|
-
}
|
|
1759
|
-
}
|
|
1760
|
-
};
|
|
1761
|
-
|
|
1762
|
-
type ActionButtonProperties = InferFromDefinition<typeof metadata$u.componentPropertyDefinitions>;
|
|
1763
|
-
type ActionChipProperties = InferFromDefinition<typeof metadata$t.componentPropertyDefinitions>;
|
|
1764
|
-
type ActionSheetProperties = InferFromDefinition<typeof metadata$s.componentPropertyDefinitions>;
|
|
1765
|
-
type ActionSheetItemProperties = InferFromDefinition<{
|
|
1766
|
-
"Label#15420:4": {
|
|
1767
|
-
type: "TEXT";
|
|
1768
|
-
defaultValue: "액션 버튼";
|
|
1769
|
-
};
|
|
1770
|
-
Tone: {
|
|
1771
|
-
type: "VARIANT";
|
|
1772
|
-
defaultValue: "Default";
|
|
1773
|
-
variantOptions: ["Default", "Critical"];
|
|
1774
|
-
};
|
|
1775
|
-
State: {
|
|
1776
|
-
type: "VARIANT";
|
|
1777
|
-
defaultValue: "Enabled";
|
|
1778
|
-
variantOptions: ["Enabled", "Enabled-Pressed", "Disabled"];
|
|
1779
|
-
};
|
|
1780
|
-
}>;
|
|
1781
|
-
type AvatarProperties = InferFromDefinition<typeof metadata$r.componentPropertyDefinitions>;
|
|
1782
|
-
type AvatarStackProperties = InferFromDefinition<typeof metadata$q.componentPropertyDefinitions>;
|
|
1783
|
-
type BadgeProperties = InferFromDefinition<typeof metadata$p.componentPropertyDefinitions>;
|
|
1784
|
-
type CalloutProperties = InferFromDefinition<typeof metadata$o.componentPropertyDefinitions>;
|
|
1785
|
-
type CheckboxProperties = InferFromDefinition<typeof metadata$n.componentPropertyDefinitions>;
|
|
1786
|
-
type ChipTabsProperties = InferFromDefinition<typeof metadata$m.componentPropertyDefinitions>;
|
|
1787
|
-
type ChipTabsItemProperties = InferFromDefinition<{
|
|
1788
|
-
"Label#8876:0": {
|
|
1789
|
-
type: "TEXT";
|
|
1790
|
-
defaultValue: "라벨";
|
|
1791
|
-
};
|
|
1792
|
-
Variant: {
|
|
1793
|
-
type: "VARIANT";
|
|
1794
|
-
defaultValue: "Neutral Solid";
|
|
1795
|
-
variantOptions: ["Neutral Solid", "Brand Solid"];
|
|
1796
|
-
};
|
|
1797
|
-
State: {
|
|
1798
|
-
type: "VARIANT";
|
|
1799
|
-
defaultValue: "Enabled";
|
|
1800
|
-
variantOptions: [
|
|
1801
|
-
"Enabled",
|
|
1802
|
-
"Enabled-Pressed",
|
|
1803
|
-
"Enabled-Selected",
|
|
1804
|
-
"Enabled-Selected-Pressed",
|
|
1805
|
-
"Disabled",
|
|
1806
|
-
"Disabled-Selected"
|
|
1807
|
-
];
|
|
1808
|
-
};
|
|
1809
|
-
}>;
|
|
1810
|
-
type ControlChipProperties = InferFromDefinition<typeof metadata$l.componentPropertyDefinitions>;
|
|
1811
|
-
type ErrorStateProperties = InferFromDefinition<typeof metadata$k.componentPropertyDefinitions>;
|
|
1812
|
-
type ExtendedActionSheetProperties = InferFromDefinition<typeof metadata$j.componentPropertyDefinitions>;
|
|
1813
|
-
type ExtendedActionSheetGroupProperties = InferFromDefinition<{
|
|
1814
|
-
"Action Count": {
|
|
1815
|
-
type: "VARIANT";
|
|
1816
|
-
defaultValue: "8";
|
|
1817
|
-
variantOptions: ["1", "2", "3", "4", "5", "6", "7", "8"];
|
|
1818
|
-
};
|
|
1819
|
-
}>;
|
|
1820
|
-
type ExtendedActionSheetItemProperties = InferFromDefinition<{
|
|
1821
|
-
"Show Prefix Icon#17043:5": {
|
|
1822
|
-
type: "BOOLEAN";
|
|
1823
|
-
defaultValue: true;
|
|
1824
|
-
};
|
|
1825
|
-
"Label#55905:8": {
|
|
1826
|
-
type: "TEXT";
|
|
1827
|
-
defaultValue: "액션 버튼";
|
|
1828
|
-
};
|
|
1829
|
-
"Prefix Icon#55948:0": {
|
|
1830
|
-
type: "INSTANCE_SWAP";
|
|
1831
|
-
defaultValue: "17024:100799";
|
|
1832
|
-
preferredValues: [];
|
|
1833
|
-
};
|
|
1834
|
-
Tone: {
|
|
1835
|
-
type: "VARIANT";
|
|
1836
|
-
defaultValue: "Neutral";
|
|
1837
|
-
variantOptions: ["Neutral", "Critical"];
|
|
1838
|
-
};
|
|
1839
|
-
State: {
|
|
1840
|
-
type: "VARIANT";
|
|
1841
|
-
defaultValue: "Enabled";
|
|
1842
|
-
variantOptions: ["Enabled", "Enabled-Pressed", "Disabled"];
|
|
1843
|
-
};
|
|
1844
|
-
}>;
|
|
1845
|
-
type ExtendedFabProperties = InferFromDefinition<typeof metadata$i.componentPropertyDefinitions>;
|
|
1846
|
-
type FabProperties = InferFromDefinition<typeof metadata$h.componentPropertyDefinitions>;
|
|
1847
|
-
type HelpBubbleProperties = InferFromDefinition<typeof metadata$g.componentPropertyDefinitions>;
|
|
1848
|
-
type IdentityPlaceholderProperties = InferFromDefinition<typeof metadata$f.componentPropertyDefinitions>;
|
|
1849
|
-
type InlineBannerProperties = InferFromDefinition<typeof metadata$e.componentPropertyDefinitions>;
|
|
1850
|
-
type MannerTempBadgeProperties = InferFromDefinition<typeof metadata$d.componentPropertyDefinitions>;
|
|
1851
|
-
type MultilineTextFieldProperties = InferFromDefinition<typeof metadata$c.componentPropertyDefinitions>;
|
|
1852
|
-
type ProgressCircleProperties = InferFromDefinition<typeof metadata$b.componentPropertyDefinitions>;
|
|
1853
|
-
type ReactionButtonProperties = InferFromDefinition<typeof metadata$a.componentPropertyDefinitions>;
|
|
1854
|
-
type SegmentedControlProperties = InferFromDefinition<typeof metadata$9.componentPropertyDefinitions>;
|
|
1855
|
-
type SegmentedControlItemProperties = InferFromDefinition<{
|
|
1856
|
-
"Label#11366:15": {
|
|
1857
|
-
type: "TEXT";
|
|
1858
|
-
defaultValue: "라벨";
|
|
1859
|
-
};
|
|
1860
|
-
State: {
|
|
1861
|
-
type: "VARIANT";
|
|
1862
|
-
defaultValue: "Enabled-Selected";
|
|
1863
|
-
variantOptions: [
|
|
1864
|
-
"Enabled",
|
|
1865
|
-
"Enabled-Selected",
|
|
1866
|
-
"Enabled-Pressed",
|
|
1867
|
-
"Enabled-Selected-Pressed",
|
|
1868
|
-
"Disabled",
|
|
1869
|
-
"Disabled-Selected"
|
|
1870
|
-
];
|
|
1871
|
-
};
|
|
1872
|
-
}>;
|
|
1873
|
-
type SelectBoxGroupProperties = InferFromDefinition<typeof metadata$v.componentPropertyDefinitions>;
|
|
1874
|
-
type SelectBoxProperties = InferFromDefinition<typeof metadata$8.componentPropertyDefinitions>;
|
|
1875
|
-
type SkeletonProperties = InferFromDefinition<typeof metadata$7.componentPropertyDefinitions>;
|
|
1876
|
-
type SnackbarProperties = InferFromDefinition<typeof metadata$6.componentPropertyDefinitions>;
|
|
1877
|
-
type SwitchProperties = InferFromDefinition<typeof metadata$4.componentPropertyDefinitions>;
|
|
1878
|
-
type TabsProperties = InferFromDefinition<typeof metadata$3.componentPropertyDefinitions>;
|
|
1879
|
-
type TabsHugItemProperties = InferFromDefinition<{
|
|
1880
|
-
"Label#4478:2": {
|
|
1881
|
-
type: "TEXT";
|
|
1882
|
-
defaultValue: "라벨";
|
|
1883
|
-
};
|
|
1884
|
-
Size: {
|
|
1885
|
-
type: "VARIANT";
|
|
1886
|
-
defaultValue: "Small";
|
|
1887
|
-
variantOptions: ["Small", "Medium"];
|
|
1888
|
-
};
|
|
1889
|
-
Notification: {
|
|
1890
|
-
type: "VARIANT";
|
|
1891
|
-
defaultValue: "False";
|
|
1892
|
-
variantOptions: ["True", "False"];
|
|
1893
|
-
};
|
|
1894
|
-
State: {
|
|
1895
|
-
type: "VARIANT";
|
|
1896
|
-
defaultValue: "Enabled-Selected";
|
|
1897
|
-
variantOptions: ["Enabled", "Enabled-Selected", "Disabled"];
|
|
1898
|
-
};
|
|
1899
|
-
}>;
|
|
1900
|
-
type TabsFillItemProperties = InferFromDefinition<{
|
|
1901
|
-
"Label#4478:2": {
|
|
1902
|
-
type: "TEXT";
|
|
1903
|
-
defaultValue: "라벨";
|
|
1904
|
-
};
|
|
1905
|
-
Size: {
|
|
1906
|
-
type: "VARIANT";
|
|
1907
|
-
defaultValue: "Small";
|
|
1908
|
-
variantOptions: ["Small", "Medium"];
|
|
1909
|
-
};
|
|
1910
|
-
Notification: {
|
|
1911
|
-
type: "VARIANT";
|
|
1912
|
-
defaultValue: "False";
|
|
1913
|
-
variantOptions: ["True", "False"];
|
|
1914
|
-
};
|
|
1915
|
-
State: {
|
|
1916
|
-
type: "VARIANT";
|
|
1917
|
-
defaultValue: "Enabled-Selected";
|
|
1918
|
-
variantOptions: ["Enabled", "Enabled-Selected", "Disabled"];
|
|
1919
|
-
};
|
|
1920
|
-
}>;
|
|
1921
|
-
type TextButtonProperties = InferFromDefinition<typeof metadata$2.componentPropertyDefinitions>;
|
|
1922
|
-
type TextFieldProperties = InferFromDefinition<typeof metadata$1.componentPropertyDefinitions>;
|
|
1923
|
-
type ToggleButtonProperties = InferFromDefinition<typeof metadata.componentPropertyDefinitions>;
|
|
1924
|
-
type AppBarProperties = InferFromDefinition<typeof metadata$5.componentPropertyDefinitions>;
|
|
1925
|
-
type AppBarMainProperties = InferFromDefinition<{
|
|
1926
|
-
"Show Right#16958:13": {
|
|
1927
|
-
type: "BOOLEAN";
|
|
1928
|
-
defaultValue: false;
|
|
1929
|
-
};
|
|
1930
|
-
"Subtitle#16958:9": {
|
|
1931
|
-
type: "TEXT";
|
|
1932
|
-
defaultValue: "서브타이틀";
|
|
1933
|
-
};
|
|
1934
|
-
"Logo#16958:5": {
|
|
1935
|
-
type: "INSTANCE_SWAP";
|
|
1936
|
-
defaultValue: "1574:3942";
|
|
1937
|
-
preferredValues: [
|
|
1938
|
-
{
|
|
1939
|
-
type: "COMPONENT_SET";
|
|
1940
|
-
key: "c7dab3f6d0df0a150564e696c0df00bd43ffef3f";
|
|
1941
|
-
}
|
|
1942
|
-
];
|
|
1943
|
-
};
|
|
1944
|
-
"Show Left#16958:17": {
|
|
1945
|
-
type: "BOOLEAN";
|
|
1946
|
-
defaultValue: false;
|
|
1947
|
-
};
|
|
1948
|
-
"Title#16944:0": {
|
|
1949
|
-
type: "TEXT";
|
|
1950
|
-
defaultValue: "타이틀";
|
|
1951
|
-
};
|
|
1952
|
-
Type: {
|
|
1953
|
-
type: "VARIANT";
|
|
1954
|
-
defaultValue: "Title";
|
|
1955
|
-
variantOptions: ["Title", "Title-Subtitle", "Logo"];
|
|
1956
|
-
};
|
|
1957
|
-
}>;
|
|
1958
|
-
type AppBarLeftProperties = InferFromDefinition<{
|
|
1959
|
-
Action: {
|
|
1960
|
-
type: "VARIANT";
|
|
1961
|
-
defaultValue: "Back";
|
|
1962
|
-
variantOptions: ["Back", "Close", "Other"];
|
|
1963
|
-
};
|
|
1964
|
-
}>;
|
|
1965
|
-
type AppBarRightProperties = InferFromDefinition<{
|
|
1966
|
-
Type: {
|
|
1967
|
-
type: "VARIANT";
|
|
1968
|
-
defaultValue: "1 Icon";
|
|
1969
|
-
variantOptions: ["1 Icon", "2 Icons", "3 Icons", "1 Text"];
|
|
1970
|
-
};
|
|
1971
|
-
}>;
|
|
1972
|
-
|
|
1973
|
-
declare const createSeedComponentTransformers: (ctx: SeedComponentTransformerDeps) => {
|
|
1974
|
-
[k: string]: ComponentTransformer<{
|
|
1975
|
-
[key: string]: FigmaRestSpec.ComponentProperty & {
|
|
1976
|
-
componentKey?: string;
|
|
1977
|
-
componentSetKey?: string;
|
|
1978
|
-
};
|
|
1979
|
-
}>;
|
|
1980
|
-
};
|
|
1981
|
-
|
|
1982
|
-
interface CreateContextOptions {
|
|
1983
|
-
ignoredComponentKeys?: Set<string>;
|
|
1984
|
-
shouldInferVariableName: boolean;
|
|
1985
|
-
shouldInferAutoLayout: boolean;
|
|
1986
|
-
}
|
|
1987
|
-
declare function createContext(options: CreateContextOptions): (node: NormalizedSceneNode) => ElementNode | undefined;
|
|
1988
|
-
|
|
1989
|
-
type index_ActionButtonProperties = ActionButtonProperties;
|
|
1990
|
-
type index_ActionChipProperties = ActionChipProperties;
|
|
1991
|
-
type index_ActionSheetItemProperties = ActionSheetItemProperties;
|
|
1992
|
-
type index_ActionSheetProperties = ActionSheetProperties;
|
|
1993
|
-
type index_AppBarLeftProperties = AppBarLeftProperties;
|
|
1994
|
-
type index_AppBarMainProperties = AppBarMainProperties;
|
|
1995
|
-
type index_AppBarProperties = AppBarProperties;
|
|
1996
|
-
type index_AppBarRightProperties = AppBarRightProperties;
|
|
1997
|
-
type index_AvatarProperties = AvatarProperties;
|
|
1998
|
-
type index_AvatarStackProperties = AvatarStackProperties;
|
|
1999
|
-
type index_BadgeProperties = BadgeProperties;
|
|
2000
|
-
type index_CalloutProperties = CalloutProperties;
|
|
2001
|
-
type index_CheckboxProperties = CheckboxProperties;
|
|
2002
|
-
type index_ChipTabsItemProperties = ChipTabsItemProperties;
|
|
2003
|
-
type index_ChipTabsProperties = ChipTabsProperties;
|
|
2004
|
-
type index_ContainerLayoutProps = ContainerLayoutProps;
|
|
2005
|
-
type index_ContainerLayoutTrait = ContainerLayoutTrait;
|
|
2006
|
-
type index_ControlChipProperties = ControlChipProperties;
|
|
2007
|
-
type index_CreateContextOptions = CreateContextOptions;
|
|
2008
|
-
type index_ErrorStateProperties = ErrorStateProperties;
|
|
2009
|
-
type index_ExtendedActionSheetGroupProperties = ExtendedActionSheetGroupProperties;
|
|
2010
|
-
type index_ExtendedActionSheetItemProperties = ExtendedActionSheetItemProperties;
|
|
2011
|
-
type index_ExtendedActionSheetProperties = ExtendedActionSheetProperties;
|
|
2012
|
-
type index_ExtendedFabProperties = ExtendedFabProperties;
|
|
2013
|
-
type index_FabProperties = FabProperties;
|
|
2014
|
-
type index_FillTrait = FillTrait;
|
|
2015
|
-
type index_FrameFillProps = FrameFillProps;
|
|
2016
|
-
type index_FrameTransformerDeps = FrameTransformerDeps;
|
|
2017
|
-
type index_HelpBubbleProperties = HelpBubbleProperties;
|
|
2018
|
-
type index_IconSelfLayoutProps = IconSelfLayoutProps;
|
|
2019
|
-
type index_IdentityPlaceholderProperties = IdentityPlaceholderProperties;
|
|
2020
|
-
type index_InlineBannerProperties = InlineBannerProperties;
|
|
2021
|
-
type index_InstanceTransformerDeps = InstanceTransformerDeps;
|
|
2022
|
-
type index_MannerTempBadgeProperties = MannerTempBadgeProperties;
|
|
2023
|
-
type index_MultilineTextFieldProperties = MultilineTextFieldProperties;
|
|
2024
|
-
type index_ProgressCircleProperties = ProgressCircleProperties;
|
|
2025
|
-
type index_PropsTransformers = PropsTransformers;
|
|
2026
|
-
type index_RadiusProps = RadiusProps;
|
|
2027
|
-
type index_RadiusTrait = RadiusTrait;
|
|
2028
|
-
type index_ReactionButtonProperties = ReactionButtonProperties;
|
|
2029
|
-
type index_RectangleTransformerDeps = RectangleTransformerDeps;
|
|
2030
|
-
type index_SeedComponentTransformerDeps = SeedComponentTransformerDeps;
|
|
2031
|
-
type index_SegmentedControlItemProperties = SegmentedControlItemProperties;
|
|
2032
|
-
type index_SegmentedControlProperties = SegmentedControlProperties;
|
|
2033
|
-
type index_SelectBoxGroupProperties = SelectBoxGroupProperties;
|
|
2034
|
-
type index_SelectBoxProperties = SelectBoxProperties;
|
|
2035
|
-
type index_SelfLayoutProps = SelfLayoutProps;
|
|
2036
|
-
type index_SelfLayoutTrait = SelfLayoutTrait;
|
|
2037
|
-
type index_ShapeFillProps = ShapeFillProps;
|
|
2038
|
-
type index_SkeletonProperties = SkeletonProperties;
|
|
2039
|
-
type index_SnackbarProperties = SnackbarProperties;
|
|
2040
|
-
type index_StrokeProps = StrokeProps;
|
|
2041
|
-
type index_StrokeTrait = StrokeTrait;
|
|
2042
|
-
type index_SwitchProperties = SwitchProperties;
|
|
2043
|
-
type index_TabsFillItemProperties = TabsFillItemProperties;
|
|
2044
|
-
type index_TabsHugItemProperties = TabsHugItemProperties;
|
|
2045
|
-
type index_TabsProperties = TabsProperties;
|
|
2046
|
-
type index_TextButtonProperties = TextButtonProperties;
|
|
2047
|
-
type index_TextFieldProperties = TextFieldProperties;
|
|
2048
|
-
type index_TextFillProps = TextFillProps;
|
|
2049
|
-
type index_TextTransformerDeps = TextTransformerDeps;
|
|
2050
|
-
type index_ToggleButtonProperties = ToggleButtonProperties;
|
|
2051
|
-
type index_TypeStyleProps = TypeStyleProps;
|
|
2052
|
-
type index_TypeStyleTrait = TypeStyleTrait;
|
|
2053
|
-
declare const index_createBooleanOperationTransformer: typeof createBooleanOperationTransformer;
|
|
2054
|
-
declare const index_createContainerLayoutPropsTransformer: typeof createContainerLayoutPropsTransformer;
|
|
2055
|
-
declare const index_createContext: typeof createContext;
|
|
2056
|
-
declare const index_createFrameFillPropsTransformer: typeof createFrameFillPropsTransformer;
|
|
2057
|
-
declare const index_createFrameTransformer: typeof createFrameTransformer;
|
|
2058
|
-
declare const index_createIconSelfLayoutPropsTransformer: typeof createIconSelfLayoutPropsTransformer;
|
|
2059
|
-
declare const index_createInstanceTransformer: typeof createInstanceTransformer;
|
|
2060
|
-
declare const index_createRadiusPropsTransformer: typeof createRadiusPropsTransformer;
|
|
2061
|
-
declare const index_createRectangleTransformer: typeof createRectangleTransformer;
|
|
2062
|
-
declare const index_createSeedComponentTransformers: typeof createSeedComponentTransformers;
|
|
2063
|
-
declare const index_createSelfLayoutPropsTransformer: typeof createSelfLayoutPropsTransformer;
|
|
2064
|
-
declare const index_createShapeFillPropsTransformer: typeof createShapeFillPropsTransformer;
|
|
2065
|
-
declare const index_createStrokePropsTransformer: typeof createStrokePropsTransformer;
|
|
2066
|
-
declare const index_createTextFillPropsTransformer: typeof createTextFillPropsTransformer;
|
|
2067
|
-
declare const index_createTextTransformer: typeof createTextTransformer;
|
|
2068
|
-
declare const index_createTypeStylePropsTransformer: typeof createTypeStylePropsTransformer;
|
|
2069
|
-
declare const index_createVectorTransformer: typeof createVectorTransformer;
|
|
2070
|
-
declare namespace index {
|
|
2071
|
-
export { index_createBooleanOperationTransformer as createBooleanOperationTransformer, index_createContainerLayoutPropsTransformer as createContainerLayoutPropsTransformer, index_createContext as createContext, index_createFrameFillPropsTransformer as createFrameFillPropsTransformer, index_createFrameTransformer as createFrameTransformer, index_createIconSelfLayoutPropsTransformer as createIconSelfLayoutPropsTransformer, index_createInstanceTransformer as createInstanceTransformer, index_createRadiusPropsTransformer as createRadiusPropsTransformer, index_createRectangleTransformer as createRectangleTransformer, index_createSeedComponentTransformers as createSeedComponentTransformers, index_createSelfLayoutPropsTransformer as createSelfLayoutPropsTransformer, index_createShapeFillPropsTransformer as createShapeFillPropsTransformer, index_createStrokePropsTransformer as createStrokePropsTransformer, index_createTextFillPropsTransformer as createTextFillPropsTransformer, index_createTextTransformer as createTextTransformer, index_createTypeStylePropsTransformer as createTypeStylePropsTransformer, index_createVectorTransformer as createVectorTransformer };
|
|
2072
|
-
export type { index_ActionButtonProperties as ActionButtonProperties, index_ActionChipProperties as ActionChipProperties, index_ActionSheetItemProperties as ActionSheetItemProperties, index_ActionSheetProperties as ActionSheetProperties, index_AppBarLeftProperties as AppBarLeftProperties, index_AppBarMainProperties as AppBarMainProperties, index_AppBarProperties as AppBarProperties, index_AppBarRightProperties as AppBarRightProperties, index_AvatarProperties as AvatarProperties, index_AvatarStackProperties as AvatarStackProperties, index_BadgeProperties as BadgeProperties, index_CalloutProperties as CalloutProperties, index_CheckboxProperties as CheckboxProperties, index_ChipTabsItemProperties as ChipTabsItemProperties, index_ChipTabsProperties as ChipTabsProperties, index_ContainerLayoutProps as ContainerLayoutProps, index_ContainerLayoutTrait as ContainerLayoutTrait, index_ControlChipProperties as ControlChipProperties, index_CreateContextOptions as CreateContextOptions, index_ErrorStateProperties as ErrorStateProperties, index_ExtendedActionSheetGroupProperties as ExtendedActionSheetGroupProperties, index_ExtendedActionSheetItemProperties as ExtendedActionSheetItemProperties, index_ExtendedActionSheetProperties as ExtendedActionSheetProperties, index_ExtendedFabProperties as ExtendedFabProperties, index_FabProperties as FabProperties, index_FillTrait as FillTrait, index_FrameFillProps as FrameFillProps, index_FrameTransformerDeps as FrameTransformerDeps, index_HelpBubbleProperties as HelpBubbleProperties, index_IconSelfLayoutProps as IconSelfLayoutProps, index_IdentityPlaceholderProperties as IdentityPlaceholderProperties, index_InlineBannerProperties as InlineBannerProperties, index_InstanceTransformerDeps as InstanceTransformerDeps, index_MannerTempBadgeProperties as MannerTempBadgeProperties, index_MultilineTextFieldProperties as MultilineTextFieldProperties, index_ProgressCircleProperties as ProgressCircleProperties, index_PropsTransformers as PropsTransformers, index_RadiusProps as RadiusProps, index_RadiusTrait as RadiusTrait, index_ReactionButtonProperties as ReactionButtonProperties, index_RectangleTransformerDeps as RectangleTransformerDeps, index_SeedComponentTransformerDeps as SeedComponentTransformerDeps, index_SegmentedControlItemProperties as SegmentedControlItemProperties, index_SegmentedControlProperties as SegmentedControlProperties, index_SelectBoxGroupProperties as SelectBoxGroupProperties, index_SelectBoxProperties as SelectBoxProperties, index_SelfLayoutProps as SelfLayoutProps, index_SelfLayoutTrait as SelfLayoutTrait, index_ShapeFillProps as ShapeFillProps, index_SkeletonProperties as SkeletonProperties, index_SnackbarProperties as SnackbarProperties, index_StrokeProps as StrokeProps, index_StrokeTrait as StrokeTrait, index_SwitchProperties as SwitchProperties, index_TabsFillItemProperties as TabsFillItemProperties, index_TabsHugItemProperties as TabsHugItemProperties, index_TabsProperties as TabsProperties, index_TextButtonProperties as TextButtonProperties, index_TextFieldProperties as TextFieldProperties, index_TextFillProps as TextFillProps, index_TextTransformerDeps as TextTransformerDeps, index_ToggleButtonProperties as ToggleButtonProperties, index_TypeStyleProps as TypeStyleProps, index_TypeStyleTrait as TypeStyleTrait };
|
|
2073
|
-
}
|
|
2074
|
-
|
|
2075
|
-
declare function generateJsxTree(node: NormalizedSceneNode, options?: Partial<CreateContextOptions>): ElementNode | undefined;
|
|
2076
|
-
declare function generateCode(node: NormalizedSceneNode, options?: Partial<CreateContextOptions> & {
|
|
2077
|
-
shouldPrintSource?: boolean;
|
|
2078
|
-
}): string | undefined;
|
|
2079
|
-
declare function generateFigmaSummary(node: NormalizedSceneNode, options?: Partial<CreateContextOptions$1> & {
|
|
2080
|
-
shouldPrintSource?: boolean;
|
|
2081
|
-
}): string | undefined;
|
|
2082
|
-
|
|
2083
|
-
export { cloneElement, createCodegenTransformer, createElement, createIconService, createPluginNormalizer, createPropsTransformer, createRestNormalizer, createStaticIconRepository, createStaticStyleRepository, createStaticVariableRepository, createStyleService, createValueTransformer, createVariableService, defineComponentTransformer, defineElementTransformer, definePropsTransformer, index$1 as figma, generateCode, generateFigmaSummary, generateJsxTree, getFigmaColorVariableNames, getFigmaStyleKey, getFigmaVariableKey, iconRepository, inferLayout, index as react, styleRepository, variableRepository };
|
|
2084
|
-
export type { CodegenTransformerDeps, ComponentPropertyDefinition, ComponentTransformer, ElementNode, ElementTransformer, IconData, IconRepository, IconService, InferFromDefinition, InferPropertyType, NormalizedBooleanOperationNode, NormalizedComponentNode, NormalizedCornerTrait, NormalizedDefaultShapeTrait, NormalizedFrameNode, NormalizedFrameTrait, NormalizedHasChildrenTrait, NormalizedHasFramePropertiesTrait, NormalizedHasGeometryTrait, NormalizedHasLayoutTrait, NormalizedInstanceNode, NormalizedIsLayerTrait, NormalizedRectangleNode, NormalizedSceneNode, NormalizedTextNode, NormalizedTextSegment, NormalizedTypePropertiesTrait, NormalizedUnhandledNode, NormalizedVectorNode, PropsTransformer, Style, StyleRepository, StyleService, StyleType, ValueTransformer, Variable, VariableCollection, VariableRepository, VariableService, VariableServiceDeps, VariableType, VariableValue, VariableValueResolved };
|
|
163
|
+
export { createIconService, createPluginNormalizer, createRestNormalizer, createStaticIconRepository, createStaticStyleRepository, createStaticVariableRepository, createStyleService, createVariableService, getFigmaColorVariableNames, getFigmaStyleKey, getFigmaVariableKey, iconRepository, styleRepository, variableRepository };
|
|
164
|
+
export type { IconData, IconRepository, IconService, NormalizedBooleanOperationNode, NormalizedComponentNode, NormalizedCornerTrait, NormalizedDefaultShapeTrait, NormalizedFrameNode, NormalizedFrameTrait, NormalizedHasChildrenTrait, NormalizedHasFramePropertiesTrait, NormalizedHasGeometryTrait, NormalizedHasLayoutTrait, NormalizedInstanceNode, NormalizedIsLayerTrait, NormalizedRectangleNode, NormalizedSceneNode, NormalizedTextNode, NormalizedTextSegment, NormalizedTypePropertiesTrait, NormalizedUnhandledNode, NormalizedVectorNode, Style, StyleRepository, StyleService, StyleType, Variable, VariableCollection, VariableRepository, VariableService, VariableServiceDeps, VariableType, VariableValue, VariableValueResolved };
|