diff --git a/libs/components/src/dialog/dialog/dialog.component.html b/libs/components/src/dialog/dialog/dialog.component.html
index bb3721795fb..773b764b22e 100644
--- a/libs/components/src/dialog/dialog/dialog.component.html
+++ b/libs/components/src/dialog/dialog/dialog.component.html
@@ -20,8 +20,23 @@
>
-
-
+
= (args: DialogComponent) => ({
props: args,
template: `
-
- {{title}}
- Dialog body text goes here.
-
-
-
-
-
-
+
+ {{title}}
+ Dialog body text goes here.
+
+
+
+
+
+
`,
});
@@ -94,23 +96,30 @@ Large.args = {
title: "Large",
};
+export const Loading = Template.bind({});
+Loading.args = {
+ dialogSize: "large",
+ loading: true,
+ title: "Loading",
+};
+
const TemplateScrolling: Story = (args: DialogComponent) => ({
props: args,
template: `
-
- Scrolling Example
-
- Dialog body text goes here.
-
- repeating lines of characters
+
+ Scrolling Example
+
+ Dialog body text goes here.
+
+ repeating lines of characters
+
+ end of sequence!
+
+
+
+
- end of sequence!
-
-
-
-
-
-
+
`,
});
@@ -122,20 +131,20 @@ ScrollingContent.args = {
const TemplateTabbed: Story = (args: DialogComponent) => ({
props: args,
template: `
-
- Tab Content Example
-
-
- First Tab Content
- Second Tab Content
- Third Tab Content
-
-
-
-
-
-
-
+
+ Tab Content Example
+
+
+ First Tab Content
+ Second Tab Content
+ Third Tab Content
+
+
+
+
+
+
+
`,
});