@supernova-studio/model 1.81.2 → 1.81.4
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 +42 -0
- package/dist/index.d.ts +42 -0
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4771,6 +4771,7 @@ var FigmaExporterProcessedStylesSchema = z125.object({
|
|
|
4771
4771
|
backgroundOrigin: z125.union([z125.literal("border-box"), z125.literal("padding-box"), z125.literal("content-box")]).optional(),
|
|
4772
4772
|
opacity: z125.number().optional(),
|
|
4773
4773
|
boxShadow: z125.string().optional(),
|
|
4774
|
+
textShadow: z125.string().optional(),
|
|
4774
4775
|
filter: z125.string().optional(),
|
|
4775
4776
|
backdropFilter: z125.string().optional(),
|
|
4776
4777
|
mixBlendMode: z125.union([
|
|
@@ -4891,7 +4892,9 @@ var frameNodeObjectSchema = baseDesignNodeObjectSchema.extend({
|
|
|
4891
4892
|
});
|
|
4892
4893
|
var textNodeObjectSchema = baseDesignNodeObjectSchema.extend({
|
|
4893
4894
|
type: z125.literal("TEXT"),
|
|
4894
|
-
characters: z125.string()
|
|
4895
|
+
characters: z125.string(),
|
|
4896
|
+
lineTypes: z125.array(z125.union([z125.literal("NONE"), z125.literal("ORDERED"), z125.literal("UNORDERED")])).optional(),
|
|
4897
|
+
lineIndentations: z125.array(z125.number()).optional()
|
|
4895
4898
|
});
|
|
4896
4899
|
var svgNodeObjectSchema = baseDesignNodeObjectSchema.extend({
|
|
4897
4900
|
type: z125.literal("SVG"),
|