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