@supernova-studio/model 0.52.13 → 0.52.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1 -60
- package/dist/index.d.ts +1 -60
- package/dist/index.js +1 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +0 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/component-properties.ts +0 -11
package/package.json
CHANGED
|
@@ -37,16 +37,6 @@ export const FigmaComponentProperty = z.discriminatedUnion("type", [
|
|
|
37
37
|
|
|
38
38
|
export const FigmaComponentPropertyMap = z.record(z.string(), FigmaComponentProperty);
|
|
39
39
|
|
|
40
|
-
export const FigmaComponentSetProperties = z.record(
|
|
41
|
-
z.string(),
|
|
42
|
-
z.discriminatedUnion("type", [
|
|
43
|
-
FigmaComponentBooleanProperty,
|
|
44
|
-
FigmaComponentInstanceSwapProperty,
|
|
45
|
-
FigmaComponentTextProperty,
|
|
46
|
-
FigmaComponentVariantProperty,
|
|
47
|
-
])
|
|
48
|
-
);
|
|
49
|
-
|
|
50
40
|
export type FigmaComponentPropertyType = z.infer<typeof FigmaComponentPropertyType>;
|
|
51
41
|
export type FigmaComponentBooleanProperty = z.infer<typeof FigmaComponentBooleanProperty>;
|
|
52
42
|
export type FigmaComponentInstanceSwapProperty = z.infer<typeof FigmaComponentInstanceSwapProperty>;
|
|
@@ -54,4 +44,3 @@ export type FigmaComponentVariantProperty = z.infer<typeof FigmaComponentVariant
|
|
|
54
44
|
export type FigmaComponentTextProperty = z.infer<typeof FigmaComponentTextProperty>;
|
|
55
45
|
export type FigmaComponentProperty = z.infer<typeof FigmaComponentProperty>;
|
|
56
46
|
export type FigmaComponentPropertyMap = z.infer<typeof FigmaComponentPropertyMap>;
|
|
57
|
-
export type FigmaComponentSetProperties = z.infer<typeof FigmaComponentSetProperties>;
|