@supernova-studio/model 0.58.19 → 1.0.0
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 +19 -320
- package/dist/index.d.ts +19 -320
- package/dist/index.js +4 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/shadow.ts +0 -2
- package/src/dsm/import/support/import-context.ts +1 -8
- package/src/feature-flags/feature-flags.ts +0 -2
- package/src/liveblocks/rooms/room-type.ts +1 -60
package/dist/index.mjs
CHANGED
|
@@ -2979,7 +2979,6 @@ var ShadowLayerValue = z70.object({
|
|
|
2979
2979
|
type: ShadowType
|
|
2980
2980
|
});
|
|
2981
2981
|
var ShadowTokenDataBase = tokenAliasOrValue(ShadowLayerValue);
|
|
2982
|
-
var ShadowValue = z70.array(ShadowTokenDataBase);
|
|
2983
2982
|
var ShadowTokenData = tokenAliasOrValue(z70.array(ShadowTokenDataBase));
|
|
2984
2983
|
|
|
2985
2984
|
// src/dsm/elements/data/size.ts
|
|
@@ -3603,15 +3602,10 @@ var FigmaImportBaseContext = z90.object({
|
|
|
3603
3602
|
*/
|
|
3604
3603
|
importWarnings: z90.record(ImportWarning.array()).default({})
|
|
3605
3604
|
});
|
|
3606
|
-
var FeatureFlagsKeepAliases = z90.object({
|
|
3607
|
-
isTypographyPropsKeepAliasesEnabled: z90.boolean().default(false),
|
|
3608
|
-
isGradientPropsKeepAliasesEnabled: z90.boolean().default(false),
|
|
3609
|
-
isShadowPropsKeepAliasesEnabled: z90.boolean().default(false)
|
|
3610
|
-
});
|
|
3611
3605
|
var FigmaImportContextWithSourcesState = FigmaImportBaseContext.extend({
|
|
3612
3606
|
sourcesWithMissingAccess: z90.array(z90.string()).default([]),
|
|
3613
3607
|
shadowOpacityOptional: z90.boolean().default(false),
|
|
3614
|
-
|
|
3608
|
+
typographyPropsKeepAliases: z90.boolean().default(false)
|
|
3615
3609
|
});
|
|
3616
3610
|
var ChangedImportedFigmaSourceData = ImportedFigmaSourceData.extend({
|
|
3617
3611
|
importMetadata: DataSourceFigmaImportMetadata
|
|
@@ -4925,8 +4919,7 @@ var RestoredDocumentationGroup = z149.object({
|
|
|
4925
4919
|
// src/liveblocks/rooms/room-type.ts
|
|
4926
4920
|
import { z as z150 } from "zod";
|
|
4927
4921
|
var RoomTypeEnum = /* @__PURE__ */ ((RoomTypeEnum2) => {
|
|
4928
|
-
RoomTypeEnum2["
|
|
4929
|
-
RoomTypeEnum2["DocumentationPage"] = "doc-page";
|
|
4922
|
+
RoomTypeEnum2["DocumentationPage"] = "documentation-page";
|
|
4930
4923
|
RoomTypeEnum2["DesignSystemVersion"] = "design-system-version";
|
|
4931
4924
|
RoomTypeEnum2["Workspace"] = "workspace";
|
|
4932
4925
|
return RoomTypeEnum2;
|
|
@@ -5311,9 +5304,7 @@ var FlaggedFeature = z169.enum([
|
|
|
5311
5304
|
"ShadowOpacityOptional",
|
|
5312
5305
|
"DisableImporter",
|
|
5313
5306
|
"VariablesOrder",
|
|
5314
|
-
"TypographyPropsKeepAliases"
|
|
5315
|
-
"GradientPropsKeepAliases",
|
|
5316
|
-
"ShadowPropsKeepAliases"
|
|
5307
|
+
"TypographyPropsKeepAliases"
|
|
5317
5308
|
]);
|
|
5318
5309
|
var FeatureFlagMap = z169.record(FlaggedFeature, z169.boolean());
|
|
5319
5310
|
var FeatureFlag = z169.object({
|
|
@@ -5678,7 +5669,6 @@ export {
|
|
|
5678
5669
|
ExternalServiceType,
|
|
5679
5670
|
FeatureFlag,
|
|
5680
5671
|
FeatureFlagMap,
|
|
5681
|
-
FeatureFlagsKeepAliases,
|
|
5682
5672
|
FeaturesSummary,
|
|
5683
5673
|
FigmaComponent,
|
|
5684
5674
|
FigmaComponentBooleanProperty,
|
|
@@ -5992,7 +5982,6 @@ export {
|
|
|
5992
5982
|
ShadowLayerValue,
|
|
5993
5983
|
ShadowTokenData,
|
|
5994
5984
|
ShadowType,
|
|
5995
|
-
ShadowValue,
|
|
5996
5985
|
ShallowDesignElement,
|
|
5997
5986
|
Size,
|
|
5998
5987
|
SizeOrUndefined,
|