Skip to content

Commit aff12eb

Browse files
committed
remove pizzaz-video widgets
1 parent ae7a981 commit aff12eb

File tree

3 files changed

+1
-20
lines changed

3 files changed

+1
-20
lines changed

build-all.mts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ const targets: string[] = [
2121
"pizzaz-carousel",
2222
"pizzaz-list",
2323
"pizzaz-albums",
24-
"pizzaz-video",
2524
];
2625
const builtNames: string[] = [];
2726

pizzaz_server_node/src/server.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -121,15 +121,6 @@ const widgets: PizzazWidget[] = [
121121
html: readWidgetHtml("pizzaz-list"),
122122
responseText: "Rendered a pizza list!",
123123
},
124-
{
125-
id: "pizza-video",
126-
title: "Show Pizza Video",
127-
templateUri: "ui://widget/pizza-video.html",
128-
invoking: "Hand-tossing a video",
129-
invoked: "Served a fresh video",
130-
html: readWidgetHtml("pizzaz-video"),
131-
responseText: "Rendered a pizza video!",
132-
},
133124
];
134125

135126
const widgetsById = new Map<string, PizzazWidget>();

pizzaz_server_python/main.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,7 @@ def _load_widget_html(component_name: str) -> str:
8686
invoked="Served a fresh list",
8787
html=_load_widget_html("pizzaz-list"),
8888
response_text="Rendered a pizza list!",
89-
),
90-
PizzazWidget(
91-
identifier="pizza-video",
92-
title="Show Pizza Video",
93-
template_uri="ui://widget/pizza-video.html",
94-
invoking="Hand-tossing a video",
95-
invoked="Served a fresh video",
96-
html=_load_widget_html("pizzaz-video"),
97-
response_text="Rendered a pizza video!",
98-
),
89+
)
9990
]
10091

10192

0 commit comments

Comments
 (0)