Skip to content

Commit

Permalink
Docs: Rename of files
Browse files Browse the repository at this point in the history
  • Loading branch information
FAUSTMANNSTEF committed Dec 2, 2024
1 parent 179c888 commit a6a12fe
Show file tree
Hide file tree
Showing 14 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Meta, StoryObj } from "@storybook/react";
import React from "react";
import { fn } from "@storybook/test";
import Button from "./button";
import Button from "./myButton";
import { ReactComponent as GoogleIcon } from "../../assets/vectors/jsx/HeaderSignInViewGoogle.svg";
import ExpandMore from "@mui/icons-material/ExpandMore";
import ExpandLess from "@mui/icons-material/ExpandLess";
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/SearchInput/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { MySearchInput } from "./SearchInput";
export { mySearchInput } from "./mySearchInput";
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import type { Meta, StoryObj } from "@storybook/react";
import { MySearchInput } from "./SearchInput";
import { mySearchInput } from "./mySearchInput";
import { ReactComponent as ExplorerSearchIcon } from "../../assets/vectors/ExplorerSearchIcon.svg";
import colors from "../../theme/colorsSeaerchInput";
import { Box } from "@mui/material";
Expand All @@ -10,15 +10,15 @@ import IconButton from "@mui/material/IconButton";

const meta = {
title: "Example/Search Input",
component: MySearchInput,
component: mySearchInput,
parameters: {
layout: "centered",
},
tags: ["autodocs"],
} satisfies Meta<typeof MySearchInput>;
} satisfies Meta<typeof mySearchInput>;

export default meta;
type Story = StoryObj<typeof MySearchInput>;
type Story = StoryObj<typeof mySearchInput>;

// AIDA search input
export const AIDASearchInput: Story = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ interface SearchInputProps extends Boxprops {
inputpadding?: string;
}

export function MySearchInput(props: Readonly<SearchInputProps>) {
export function mySearchInput(props: Readonly<SearchInputProps>) {
const {
display,
background = colors.secondary.disableButton,
Expand Down
2 changes: 1 addition & 1 deletion src/components/Tables/TabulatorTables/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
ColumnDefinition,
TabulatorFull as Tabulator,
} from "tabulator-tables";
import { TableDataItem } from "./tabulatorTables";
import { TableDataItem } from "./myTabulatorTable";

export const TABULATOR_BORDER_STYLES = {
BLUE: "2px solid blue",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Meta, StoryObj } from "@storybook/react";
import TabulatorTable from "./tabulatorTables";
import TabulatorTable from "./myTabulatorTable";
import { withRouter } from "storybook-addon-remix-react-router";
import {
TABLE_VARIATION_5_DATA,
Expand Down
4 changes: 2 additions & 2 deletions src/components/buttons/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { default as Button } from "./button";
export { default as IconButton } from "./IconButton/iconbutton";
export { default as Button } from "./myButton";
export { default as IconButton } from "./IconButton/myIconButton";
2 changes: 1 addition & 1 deletion src/components/menu/MuiFormControl/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { default as formComponent } from "./MuiForm";
export { default as formComponent } from "./myMuiForm";

0 comments on commit a6a12fe

Please sign in to comment.