@contentful/experience-design-system-types 2.33.1-dev-build-1b6f259.0 → 2.33.1-dev-build-a73f696.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/dtcg/types.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export interface DTCGTokenGroup {
|
|
|
26
26
|
tokenIds: string[];
|
|
27
27
|
}
|
|
28
28
|
export type DTCGTokenNode = DTCGTokenLeaf | DTCGTokenGroupNode;
|
|
29
|
-
interface DTCGTokenLeaf {
|
|
29
|
+
export interface DTCGTokenLeaf {
|
|
30
30
|
$type: string;
|
|
31
31
|
$value: unknown;
|
|
32
32
|
$description?: string;
|
|
@@ -35,4 +35,3 @@ export interface DTCGTokenGroupNode {
|
|
|
35
35
|
$description?: string;
|
|
36
36
|
[key: string]: DTCGTokenNode | string | undefined;
|
|
37
37
|
}
|
|
38
|
-
export {};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import type { CDFComponentEntry } from '../../cdf/index.js';
|
|
2
2
|
import type { DTCGTokenEntry } from '../../dtcg/index.js';
|
|
3
|
-
interface PropertyBreakingChange {
|
|
3
|
+
export interface PropertyBreakingChange {
|
|
4
4
|
propertyId: string;
|
|
5
5
|
reason: 'removed' | 'added_required_no_default' | 'type_changed' | 'validation_narrowed';
|
|
6
6
|
}
|
|
7
|
-
interface SlotBreakingChange {
|
|
7
|
+
export interface SlotBreakingChange {
|
|
8
8
|
slotId: string;
|
|
9
9
|
reason: 'slot_removed' | 'slot_allowed_components_narrowed';
|
|
10
10
|
}
|
|
@@ -69,4 +69,3 @@ export interface ServerPreviewResponse {
|
|
|
69
69
|
tokens: EntityDiffGroup<DesignTokenSummary, DTCGTokenEntry>;
|
|
70
70
|
taxonomies: EntityDiffGroup<TaxonomySummary, TaxonomySummary>;
|
|
71
71
|
}
|
|
72
|
-
export {};
|