@contentful/experience-design-system-types 2.26.7-dev-build-ccb2aff.0 → 2.26.7-dev-build-8206e92.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/package.json
CHANGED
package/dist/src/cdf/schema.d.ts
CHANGED
|
@@ -58,7 +58,7 @@ export declare const cdfV1JsonSchema: {
|
|
|
58
58
|
};
|
|
59
59
|
readonly $category: {
|
|
60
60
|
readonly type: "string";
|
|
61
|
-
readonly enum: readonly ["content", "design", "state"];
|
|
61
|
+
readonly enum: readonly ["content", "design", "state", "unattached"];
|
|
62
62
|
};
|
|
63
63
|
readonly $description: {
|
|
64
64
|
readonly type: "string";
|
package/dist/src/cdf/types.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export declare const CDFPropertySchema: z.ZodMiniObject<{
|
|
|
14
14
|
content: "content";
|
|
15
15
|
design: "design";
|
|
16
16
|
state: "state";
|
|
17
|
+
unattached: "unattached";
|
|
17
18
|
}>;
|
|
18
19
|
$description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
19
20
|
$required: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
@@ -46,6 +47,7 @@ export declare const CDFComponentSchema: z.ZodMiniObject<{
|
|
|
46
47
|
content: "content";
|
|
47
48
|
design: "design";
|
|
48
49
|
state: "state";
|
|
50
|
+
unattached: "unattached";
|
|
49
51
|
}>;
|
|
50
52
|
$description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
51
53
|
$required: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const CDF_PROPERTY_TYPES: readonly ["string", "richtext", "number", "media", "link", "enum", "token", "boolean"];
|
|
2
|
-
export declare const CDF_PROPERTY_CATEGORIES: readonly ["content", "design", "state"];
|
|
2
|
+
export declare const CDF_PROPERTY_CATEGORIES: readonly ["content", "design", "state", "unattached"];
|