forked from Kispi/Core
style(webapp): reorder imports
This commit is contained in:
parent
5ba74d198a
commit
6425af1ffb
6 changed files with 10 additions and 11 deletions
|
@ -8,6 +8,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { INavigationEntry } from './interfaces/navigation-entry.interface';
|
||||||
import {
|
import {
|
||||||
IdentificationIcon,
|
IdentificationIcon,
|
||||||
LibraryIcon,
|
LibraryIcon,
|
||||||
|
@ -16,7 +17,6 @@ import {
|
||||||
TrendingUpIcon,
|
TrendingUpIcon,
|
||||||
UserIcon,
|
UserIcon,
|
||||||
} from '@heroicons/vue/outline';
|
} from '@heroicons/vue/outline';
|
||||||
import { INavigationEntry } from './interfaces/navigation-entry.interface';
|
|
||||||
import MoleculeNavigationDrawer from './components/molecules/MoleculeNavigationDrawer.vue';
|
import MoleculeNavigationDrawer from './components/molecules/MoleculeNavigationDrawer.vue';
|
||||||
|
|
||||||
const drawerId = 'default-drawer';
|
const drawerId = 'default-drawer';
|
||||||
|
@ -59,4 +59,5 @@ const navigationEntries: INavigationEntry[] = [
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
||||||
</style>
|
</style>
|
|
@ -12,7 +12,6 @@
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import AtomInput from './AtomInput.vue';
|
import AtomInput from './AtomInput.vue';
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
|
@ -65,11 +65,11 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { CheckCircleIcon, XCircleIcon } from '@heroicons/vue/outline';
|
|
||||||
import AtomModal from '../atoms/AtomModal.vue';
|
|
||||||
import AtomInput from '../atoms/AtomInput.vue';
|
|
||||||
import AtomSelect from '../atoms/AtomSelect.vue';
|
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
|
import { CheckCircleIcon, XCircleIcon } from '@heroicons/vue/outline';
|
||||||
|
import AtomInput from '../atoms/AtomInput.vue';
|
||||||
|
import AtomModal from '../atoms/AtomModal.vue';
|
||||||
|
import AtomSelect from '../atoms/AtomSelect.vue';
|
||||||
|
|
||||||
const firstName = ref('');
|
const firstName = ref('');
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,6 @@ import { CurrencyService } from '../services/currency.service';
|
||||||
import { DateService } from '../services/date.service';
|
import { DateService } from '../services/date.service';
|
||||||
import { CurrencyDollarIcon, DocumentTextIcon } from '@heroicons/vue/outline';
|
import { CurrencyDollarIcon, DocumentTextIcon } from '@heroicons/vue/outline';
|
||||||
|
|
||||||
|
|
||||||
defineProps({
|
defineProps({
|
||||||
tableHeaders: {
|
tableHeaders: {
|
||||||
type: Array as PropType<{ title: string, key: string, type: TableHeaderType }[]>,
|
type: Array as PropType<{ title: string, key: string, type: TableHeaderType }[]>,
|
||||||
|
|
|
@ -34,10 +34,10 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { CheckCircleIcon, XCircleIcon } from '@heroicons/vue/outline';
|
|
||||||
import AtomModal from '../atoms/AtomModal.vue';
|
|
||||||
import AtomCurrencyInput from '../atoms/AtomCurrencyInput.vue';
|
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
|
import { CheckCircleIcon, XCircleIcon } from '@heroicons/vue/outline';
|
||||||
|
import AtomCurrencyInput from '../atoms/AtomCurrencyInput.vue';
|
||||||
|
import AtomModal from '../atoms/AtomModal.vue';
|
||||||
|
|
||||||
const input = ref();
|
const input = ref();
|
||||||
const abortButton = ref();
|
const abortButton = ref();
|
||||||
|
|
|
@ -35,9 +35,9 @@
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { PropType } from 'vue';
|
import { PropType } from 'vue';
|
||||||
import { ITransaction } from '../../interfaces/transaction.interface';
|
|
||||||
import { CurrencyService } from '../services/currency.service';
|
import { CurrencyService } from '../services/currency.service';
|
||||||
import { DateService } from '../services/date.service';
|
import { DateService } from '../services/date.service';
|
||||||
|
import { ITransaction } from '../../interfaces/transaction.interface';
|
||||||
|
|
||||||
defineProps({
|
defineProps({
|
||||||
transactions: {
|
transactions: {
|
||||||
|
|
Loading…
Reference in a new issue