@@ -267,6 +267,8 @@ export const manifest: OpenElementPackageManifest = {
267267 description : 'Product-art standards diagram for route, package, token, and hero visuals' ,
268268 attributes : [
269269 { name : 'variant' , type : 'string' , default : '"hero"' , description : 'Visual variant' } ,
270+ { name : 'motion' , type : 'string' , default : '"auto"' , description : 'Motion mode' } ,
271+ { name : 'emphasis' , type : 'string' , default : '"normal"' , description : 'Visual emphasis' } ,
270272 ] ,
271273 cssParts : [ ] ,
272274 openElement : {
@@ -278,6 +280,27 @@ export const manifest: OpenElementPackageManifest = {
278280 export : 'OpenStandardsVisual' ,
279281 } ,
280282 } ,
283+ {
284+ tagName : 'open-lab-stage' ,
285+ className : 'OpenLabStage' ,
286+ superclassName : 'OpenElement' ,
287+ description : 'Kinetic standards-lab hero stage for product-art pages' ,
288+ attributes : [
289+ { name : 'motion' , type : 'string' , default : '"auto"' , description : 'Motion mode' } ,
290+ { name : 'emphasis' , type : 'string' , default : '"high"' , description : 'Stage emphasis' } ,
291+ ] ,
292+ cssParts : [
293+ { name : 'stage' , description : 'The stage wrapper' } ,
294+ ] ,
295+ openElement : {
296+ ssr : true ,
297+ dsd : true ,
298+ layer : 'dsd-static' ,
299+ hydrate : 'idle' ,
300+ module : '@openelement/ui/open-lab-stage' ,
301+ export : 'OpenLabStage' ,
302+ } ,
303+ } ,
281304 {
282305 tagName : 'open-dialog' ,
283306 className : 'OpenDialog' ,
@@ -645,6 +668,26 @@ export const manifest: OpenElementPackageManifest = {
645668 exports : [ { name : 'OpenCodeBlock' , path : './open-code-block.js' } ] ,
646669 declarations : [ 'open-code-block' ] ,
647670 } ,
671+ {
672+ path : './open-badge.js' ,
673+ exports : [ { name : 'OpenBadge' , path : './open-badge.js' } ] ,
674+ declarations : [ 'open-badge' ] ,
675+ } ,
676+ {
677+ path : './open-lab-panel.js' ,
678+ exports : [ { name : 'OpenLabPanel' , path : './open-lab-panel.js' } ] ,
679+ declarations : [ 'open-lab-panel' ] ,
680+ } ,
681+ {
682+ path : './open-lab-stage.js' ,
683+ exports : [ { name : 'OpenLabStage' , path : './open-lab-stage.js' } ] ,
684+ declarations : [ 'open-lab-stage' ] ,
685+ } ,
686+ {
687+ path : './open-standards-visual.js' ,
688+ exports : [ { name : 'OpenStandardsVisual' , path : './open-standards-visual.js' } ] ,
689+ declarations : [ 'open-standards-visual' ] ,
690+ } ,
648691 {
649692 path : './open-dialog.js' ,
650693 exports : [ { name : 'OpenDialog' , path : './open-dialog.js' } ] ,
0 commit comments