@opensite/ui 3.8.2 → 3.9.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/registry.cjs +45 -1
- package/dist/registry.d.cts +10 -0
- package/dist/registry.d.ts +10 -0
- package/dist/registry.js +45 -1
- package/dist/social-link-icon.d.cts +1 -1
- package/dist/social-link-icon.d.ts +1 -1
- package/package.json +1 -1
package/dist/registry.cjs
CHANGED
|
@@ -135214,7 +135214,51 @@ function createBuilderContractBundle({
|
|
|
135214
135214
|
hydrationPhase: "routing-build",
|
|
135215
135215
|
canonicalPayloadExpectation: "Keep blog feed requests symbolic in canonical page JSON until routing-build hydration resolves them.",
|
|
135216
135216
|
requiredFields: ["type"],
|
|
135217
|
-
optionalFields: [
|
|
135217
|
+
optionalFields: [
|
|
135218
|
+
"limit",
|
|
135219
|
+
"offset",
|
|
135220
|
+
"category",
|
|
135221
|
+
"tag",
|
|
135222
|
+
"featuredOnly",
|
|
135223
|
+
"bindTo"
|
|
135224
|
+
]
|
|
135225
|
+
},
|
|
135226
|
+
blog_post: {
|
|
135227
|
+
sourceType: "blog_post",
|
|
135228
|
+
symbolic: true,
|
|
135229
|
+
hydrationOwner: "dashtrack-ai",
|
|
135230
|
+
hydrationPhase: "routing-build",
|
|
135231
|
+
canonicalPayloadExpectation: "Keep blog post requests symbolic in canonical page JSON until routing-build hydration resolves them.",
|
|
135232
|
+
requiredFields: ["type"],
|
|
135233
|
+
optionalFields: ["slug", "current", "bindTo"]
|
|
135234
|
+
},
|
|
135235
|
+
testimonials_feed: {
|
|
135236
|
+
sourceType: "testimonials_feed",
|
|
135237
|
+
symbolic: true,
|
|
135238
|
+
hydrationOwner: "dashtrack-ai",
|
|
135239
|
+
hydrationPhase: "routing-build",
|
|
135240
|
+
canonicalPayloadExpectation: "Keep testimonials feed requests symbolic in canonical page JSON until routing-build hydration resolves them.",
|
|
135241
|
+
requiredFields: ["type"],
|
|
135242
|
+
optionalFields: ["limit", "minRating", "platforms", "locationId", "bindTo"]
|
|
135243
|
+
},
|
|
135244
|
+
instagram_feed: {
|
|
135245
|
+
sourceType: "instagram_feed",
|
|
135246
|
+
symbolic: true,
|
|
135247
|
+
hydrationOwner: "dashtrack-ai",
|
|
135248
|
+
hydrationPhase: "routing-build",
|
|
135249
|
+
canonicalPayloadExpectation: "Keep Instagram feed requests symbolic in canonical page JSON until routing-build hydration resolves them.",
|
|
135250
|
+
requiredFields: ["type"],
|
|
135251
|
+
optionalFields: ["limit", "profile", "hashtag", "bindTo"]
|
|
135252
|
+
},
|
|
135253
|
+
events_feed: {
|
|
135254
|
+
sourceType: "events_feed",
|
|
135255
|
+
symbolic: true,
|
|
135256
|
+
hydrationOwner: "dashtrack-ai",
|
|
135257
|
+
hydrationPhase: "routing-build",
|
|
135258
|
+
canonicalPayloadExpectation: "Keep events feed requests symbolic in canonical page JSON until routing-build hydration resolves them.",
|
|
135259
|
+
requiredFields: ["type"],
|
|
135260
|
+
optionalFields: ["limit", "upcomingOnly", "locationIds", "bindTo"],
|
|
135261
|
+
expands: true
|
|
135218
135262
|
}
|
|
135219
135263
|
},
|
|
135220
135264
|
designTokens: {
|
package/dist/registry.d.cts
CHANGED
|
@@ -234,9 +234,19 @@ interface BuilderContractDynamicSourceDefinition {
|
|
|
234
234
|
canonicalPayloadExpectation: string;
|
|
235
235
|
requiredFields: string[];
|
|
236
236
|
optionalFields: string[];
|
|
237
|
+
/**
|
|
238
|
+
* When true, hydration may fan a single symbolic block out into N concrete
|
|
239
|
+
* block instances (one-to-many expansion, contract D6). Absent for the
|
|
240
|
+
* one-to-one sources.
|
|
241
|
+
*/
|
|
242
|
+
expands?: boolean;
|
|
237
243
|
}
|
|
238
244
|
interface BuilderContractDynamicSources {
|
|
239
245
|
blog_feed: BuilderContractDynamicSourceDefinition;
|
|
246
|
+
blog_post: BuilderContractDynamicSourceDefinition;
|
|
247
|
+
testimonials_feed: BuilderContractDynamicSourceDefinition;
|
|
248
|
+
instagram_feed: BuilderContractDynamicSourceDefinition;
|
|
249
|
+
events_feed: BuilderContractDynamicSourceDefinition;
|
|
240
250
|
}
|
|
241
251
|
interface BuilderContractDesignTokens {
|
|
242
252
|
canonicalSource: "theme_config";
|
package/dist/registry.d.ts
CHANGED
|
@@ -234,9 +234,19 @@ interface BuilderContractDynamicSourceDefinition {
|
|
|
234
234
|
canonicalPayloadExpectation: string;
|
|
235
235
|
requiredFields: string[];
|
|
236
236
|
optionalFields: string[];
|
|
237
|
+
/**
|
|
238
|
+
* When true, hydration may fan a single symbolic block out into N concrete
|
|
239
|
+
* block instances (one-to-many expansion, contract D6). Absent for the
|
|
240
|
+
* one-to-one sources.
|
|
241
|
+
*/
|
|
242
|
+
expands?: boolean;
|
|
237
243
|
}
|
|
238
244
|
interface BuilderContractDynamicSources {
|
|
239
245
|
blog_feed: BuilderContractDynamicSourceDefinition;
|
|
246
|
+
blog_post: BuilderContractDynamicSourceDefinition;
|
|
247
|
+
testimonials_feed: BuilderContractDynamicSourceDefinition;
|
|
248
|
+
instagram_feed: BuilderContractDynamicSourceDefinition;
|
|
249
|
+
events_feed: BuilderContractDynamicSourceDefinition;
|
|
240
250
|
}
|
|
241
251
|
interface BuilderContractDesignTokens {
|
|
242
252
|
canonicalSource: "theme_config";
|
package/dist/registry.js
CHANGED
|
@@ -135174,7 +135174,51 @@ function createBuilderContractBundle({
|
|
|
135174
135174
|
hydrationPhase: "routing-build",
|
|
135175
135175
|
canonicalPayloadExpectation: "Keep blog feed requests symbolic in canonical page JSON until routing-build hydration resolves them.",
|
|
135176
135176
|
requiredFields: ["type"],
|
|
135177
|
-
optionalFields: [
|
|
135177
|
+
optionalFields: [
|
|
135178
|
+
"limit",
|
|
135179
|
+
"offset",
|
|
135180
|
+
"category",
|
|
135181
|
+
"tag",
|
|
135182
|
+
"featuredOnly",
|
|
135183
|
+
"bindTo"
|
|
135184
|
+
]
|
|
135185
|
+
},
|
|
135186
|
+
blog_post: {
|
|
135187
|
+
sourceType: "blog_post",
|
|
135188
|
+
symbolic: true,
|
|
135189
|
+
hydrationOwner: "dashtrack-ai",
|
|
135190
|
+
hydrationPhase: "routing-build",
|
|
135191
|
+
canonicalPayloadExpectation: "Keep blog post requests symbolic in canonical page JSON until routing-build hydration resolves them.",
|
|
135192
|
+
requiredFields: ["type"],
|
|
135193
|
+
optionalFields: ["slug", "current", "bindTo"]
|
|
135194
|
+
},
|
|
135195
|
+
testimonials_feed: {
|
|
135196
|
+
sourceType: "testimonials_feed",
|
|
135197
|
+
symbolic: true,
|
|
135198
|
+
hydrationOwner: "dashtrack-ai",
|
|
135199
|
+
hydrationPhase: "routing-build",
|
|
135200
|
+
canonicalPayloadExpectation: "Keep testimonials feed requests symbolic in canonical page JSON until routing-build hydration resolves them.",
|
|
135201
|
+
requiredFields: ["type"],
|
|
135202
|
+
optionalFields: ["limit", "minRating", "platforms", "locationId", "bindTo"]
|
|
135203
|
+
},
|
|
135204
|
+
instagram_feed: {
|
|
135205
|
+
sourceType: "instagram_feed",
|
|
135206
|
+
symbolic: true,
|
|
135207
|
+
hydrationOwner: "dashtrack-ai",
|
|
135208
|
+
hydrationPhase: "routing-build",
|
|
135209
|
+
canonicalPayloadExpectation: "Keep Instagram feed requests symbolic in canonical page JSON until routing-build hydration resolves them.",
|
|
135210
|
+
requiredFields: ["type"],
|
|
135211
|
+
optionalFields: ["limit", "profile", "hashtag", "bindTo"]
|
|
135212
|
+
},
|
|
135213
|
+
events_feed: {
|
|
135214
|
+
sourceType: "events_feed",
|
|
135215
|
+
symbolic: true,
|
|
135216
|
+
hydrationOwner: "dashtrack-ai",
|
|
135217
|
+
hydrationPhase: "routing-build",
|
|
135218
|
+
canonicalPayloadExpectation: "Keep events feed requests symbolic in canonical page JSON until routing-build hydration resolves them.",
|
|
135219
|
+
requiredFields: ["type"],
|
|
135220
|
+
optionalFields: ["limit", "upcomingOnly", "locationIds", "bindTo"],
|
|
135221
|
+
expands: true
|
|
135178
135222
|
}
|
|
135179
135223
|
},
|
|
135180
135224
|
designTokens: {
|
|
@@ -77,6 +77,6 @@ interface SocialLinkIconProps extends Omit<PressableProps, "children">, SocialLi
|
|
|
77
77
|
* />
|
|
78
78
|
* ```
|
|
79
79
|
*/
|
|
80
|
-
declare const SocialLinkIcon: React.ForwardRefExoticComponent<SocialLinkIconProps & React.RefAttributes<
|
|
80
|
+
declare const SocialLinkIcon: React.ForwardRefExoticComponent<SocialLinkIconProps & React.RefAttributes<HTMLButtonElement | HTMLAnchorElement | HTMLSpanElement>>;
|
|
81
81
|
|
|
82
82
|
export { SocialLinkIcon, type SocialLinkIconDynamicIconProps, type SocialLinkIconProps };
|
|
@@ -77,6 +77,6 @@ interface SocialLinkIconProps extends Omit<PressableProps, "children">, SocialLi
|
|
|
77
77
|
* />
|
|
78
78
|
* ```
|
|
79
79
|
*/
|
|
80
|
-
declare const SocialLinkIcon: React.ForwardRefExoticComponent<SocialLinkIconProps & React.RefAttributes<
|
|
80
|
+
declare const SocialLinkIcon: React.ForwardRefExoticComponent<SocialLinkIconProps & React.RefAttributes<HTMLButtonElement | HTMLAnchorElement | HTMLSpanElement>>;
|
|
81
81
|
|
|
82
82
|
export { SocialLinkIcon, type SocialLinkIconDynamicIconProps, type SocialLinkIconProps };
|