;
-
-export const Default: Story = {
- render: (props) => ({
- props,
- template: `
-
-
-
-
-
-
- `,
- }),
- args: {
- background: "default",
- },
-};
-
-export const SecondStep: Story = {
- render: (props) => ({
- props,
- template: `
-
-
-
-
-
-
- `,
- }),
- args: {
- background: "default",
- },
-};
-
-export const ThirdStep: Story = {
- render: (props) => ({
- props,
- template: `
-
-
-
-
-
-
- `,
- }),
- args: {
- background: "default",
- },
-};
-
-export const WithErrors: Story = {
- render: (props) => ({
- props,
- template: `
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- `,
- }),
- args: {
- background: "default",
- },
-};
-
-export const WithDescriptions: Story = {
- render: (props) => ({
- props,
- template: `
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- `,
- }),
- args: {
- background: "default",
- },
-};
-
-export const TransparentBackground: Story = {
- render: (props) => ({
- props,
- template: `
-
-
-
-
-
-
- `,
- }),
-};
-
-/**
- * Always collapsed — only indicators plus the selected step's label are shown,
- * regardless of viewport width.
- */
-export const AlwaysCompact: Story = {
- render: (props) => ({
- props,
- template: `
-
-
-
-
-
-
- `,
- }),
-};
-
-/**
- * Collapses at the `md` breakpoint — useful when labels with descriptions
- * would overflow on narrower desktops.
- */
-export const CompactAtMdBreakpoint: Story = {
- render: (props) => ({
- props,
- template: `
-
-
-
-
-
-
- `,
- }),
-};
diff --git a/tedi/components/navigation/horizontal-stepper/index.ts b/tedi/components/navigation/horizontal-stepper/index.ts
deleted file mode 100644
index 17a879dd9..000000000
--- a/tedi/components/navigation/horizontal-stepper/index.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-export * from "./horizontal-stepper.component";
-export * from "./horizontal-stepper-item";
diff --git a/tedi/components/navigation/index.ts b/tedi/components/navigation/index.ts
index 4cae8b5eb..b7336cf96 100644
--- a/tedi/components/navigation/index.ts
+++ b/tedi/components/navigation/index.ts
@@ -1,2 +1 @@
-export * from "./horizontal-stepper";
export * from "./link/link.component";
\ No newline at end of file
diff --git a/tedi/services/translation/translations.ts b/tedi/services/translation/translations.ts
index c42513236..7665e5351 100644
--- a/tedi/services/translation/translations.ts
+++ b/tedi/services/translation/translations.ts
@@ -289,14 +289,6 @@ export const translationsMap = {
en: "Not completed",
ru: "Не завершено",
},
- "stepper.error": {
- description:
- "Label for screen-reader that this step has errors (visually hidden)",
- components: ["HorizontalStepper"],
- et: "Viga",
- en: "Error",
- ru: "Ошибка",
- },
"skeleton.loading": {
description: "Announced by screen-readers when skeleton is loading",
components: ["Skeleton"],