@supernova-studio/model 0.58.4 → 0.58.6
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 +162 -0
- package/dist/index.d.ts +162 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/tokens.ts +1 -0
package/dist/index.mjs
CHANGED
|
@@ -3139,7 +3139,8 @@ var DesignTokenOriginPart = z85.object({
|
|
|
3139
3139
|
referenceOriginRemote: z85.boolean().optional(),
|
|
3140
3140
|
referencePersistentId: z85.string().optional(),
|
|
3141
3141
|
referenceResolutionFailed: z85.boolean().optional(),
|
|
3142
|
-
key: z85.string().optional()
|
|
3142
|
+
key: z85.string().optional(),
|
|
3143
|
+
sortOrder: z85.number().optional()
|
|
3143
3144
|
});
|
|
3144
3145
|
var DesignTokenOrigin = DesignElementOrigin.extend(DesignTokenOriginPart.shape);
|
|
3145
3146
|
var DesignTokenBase = DesignElementBase.extend(DesignElementGroupableRequiredPart.shape).extend(DesignElementBrandedPart.shape).extend({
|