Skip to content

Commit

Permalink
Merge pull request #468 from huwshimi/component-dirs
Browse files Browse the repository at this point in the history
WD-17075 - refactor: move components into isolated directories
  • Loading branch information
huwshimi authored Nov 20, 2024
2 parents 92425ed + 2c22af6 commit ac8be12
Show file tree
Hide file tree
Showing 52 changed files with 26 additions and 0 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/components/CheckboxList/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./CheckboxList";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/components/Loader/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./Loader";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/components/Logo/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./Logo";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/components/Navigation/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./Navigation";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/components/NoMatch/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./NoMatch";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/components/Pagination/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./Pagination";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/components/Panels/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./Panels";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/components/ScrollableContainer/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./ScrollableContainer";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/components/SidePanel/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./SidePanel";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/clients/ClientCreate/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./ClientCreate";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/clients/ClientEdit/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./ClientEdit";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/clients/ClientForm/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./ClientForm";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/clients/ClientList/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./ClientList";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/clients/DeleteClientBtn/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./DeleteClientBtn";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/clients/EditClientBtn/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./EditClientBtn";
1 change: 1 addition & 0 deletions ui/src/pages/identities/DeleteIdentityBtn/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./DeleteIdentityBtn";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/identities/IdentityCreate/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./IdentityCreate";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/identities/IdentityForm/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default, type IdentityFormTypes } from "./IdentityForm";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/identities/IdentityList/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./IdentityList";
1 change: 1 addition & 0 deletions ui/src/pages/providers/DeleteProviderBtn/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./DeleteProviderBtn";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/providers/EditProviderBtn/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./EditProviderBtn";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/providers/ProviderCreate/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./ProviderCreate";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/providers/ProviderEdit/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./ProviderEdit";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/providers/ProviderForm/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default, type ProviderFormTypes } from "./ProviderForm";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/providers/ProviderList/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./ProviderList";
File renamed without changes.
1 change: 1 addition & 0 deletions ui/src/pages/schemas/SchemaList/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./SchemaList";

0 comments on commit ac8be12

Please sign in to comment.