-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tidy Repo structure RISDEV-4536 (#4)
- Loading branch information
Showing
15 changed files
with
27 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
import { setup } from "@storybook/vue3"; | ||
import PrimeVue from "primevue/config"; | ||
import customPresets from "../src/components/customPresets"; | ||
import "../src/style.css"; | ||
import PresetCollection from "../src/components/PresetCollection"; | ||
import '../src/global.css'; | ||
|
||
setup((app) => { | ||
app.use(PrimeVue, { | ||
pt: customPresets, | ||
pt: PresetCollection, | ||
unstyled: true, | ||
}); | ||
}); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import Button from './Button'; | ||
import TextInput from "./TextInput"; | ||
import InputGroup from "./InputGroup"; | ||
import InputGroupAddon from "./InputGroupAddon"; | ||
|
||
const PresetCollection = { | ||
button: Button, | ||
inputText: TextInput, | ||
inputGroup: InputGroup, | ||
inputGroupAddon: InputGroupAddon, | ||
}; | ||
|
||
export default PresetCollection; |
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.